TwoByteString.st
changeset 996 560a05298da9
parent 992 f456f8f7d421
child 1014 da30760cfd3e
equal deleted inserted replaced
995:b018368b3a94 996:560a05298da9
    36 documentation
    36 documentation
    37 "
    37 "
    38     TwoByteStrings are like strings, but storing 16bits per character.
    38     TwoByteStrings are like strings, but storing 16bits per character.
    39     The integration of them into the system is not completed ....
    39     The integration of them into the system is not completed ....
    40 "
    40 "
       
    41 !
       
    42 
       
    43 initialize
       
    44     self flags:(Behavior flagWords)
       
    45 
       
    46     "
       
    47      TwoByteString initialize
       
    48     "
    41 ! !
    49 ! !
    42 
    50 
    43 !TwoByteString class methodsFor:'instance creation'!
    51 !TwoByteString class methodsFor:'instance creation'!
    44 
    52 
    45 basicNew:anInteger
    53 basicNew:anInteger
    85 ! !
    93 ! !
    86 
    94 
    87 !TwoByteString class methodsFor:'documentation'!
    95 !TwoByteString class methodsFor:'documentation'!
    88 
    96 
    89 version
    97 version
    90     ^ '$Header: /cvs/stx/stx/libbasic/TwoByteString.st,v 1.16 1996-02-22 20:30:49 cg Exp $'
    98     ^ '$Header: /cvs/stx/stx/libbasic/TwoByteString.st,v 1.17 1996-02-23 02:20:22 cg Exp $'
    91 ! !
    99 ! !
       
   100 TwoByteString initialize!