ByteArray.st
changeset 628 7aa563e4c64a
parent 563 593f73e7c52c
child 788 e80f1c42b87b
equal deleted inserted replaced
627:0a9e18feab08 628:7aa563e4c64a
    50     If you have to communicate structure-data (in the C-sense) with external
    50     If you have to communicate structure-data (in the C-sense) with external
    51     programs/data-bases, see a companion class (Structure) in the goodies directory.
    51     programs/data-bases, see a companion class (Structure) in the goodies directory.
    52     It allows the definition of subclasses of ByteArray, which transparently fetch
    52     It allows the definition of subclasses of ByteArray, which transparently fetch
    53     and store C-structure fields.
    53     and store C-structure fields.
    54 "
    54 "
    55 !
       
    56 
       
    57 version
       
    58     ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.38 1995-11-15 17:08:15 cg Exp $'
       
    59 ! !
    55 ! !
    60 
    56 
    61 !ByteArray class methodsFor:'instance creation'!
    57 !ByteArray class methodsFor:'instance creation'!
    62 
    58 
    63 fromPackedString:aString
    59 fromPackedString:aString
  2008     "
  2004     "
  2009      #[1 2 3 1 2 3 1 2 3 1 2 3 4 5 6 4 5 6] usedValues 
  2005      #[1 2 3 1 2 3 1 2 3 1 2 3 4 5 6 4 5 6] usedValues 
  2010     "
  2006     "
  2011 ! !
  2007 ! !
  2012 
  2008 
       
  2009 !ByteArray class methodsFor:'documentation'!
       
  2010 
       
  2011 version
       
  2012     ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.39 1995-11-23 16:59:39 cg Exp $'
       
  2013 ! !