WriteStr.st
changeset 1295 83f594f05c52
parent 1136 898af060dfde
child 1398 6c594289c589
equal deleted inserted replaced
1294:e26bbb61f6b2 1295:83f594f05c52
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 PositionableStream subclass:#WriteStream
    13 PositionableStream subclass:#WriteStream
    14 	 instanceVariableNames:''
    14 	instanceVariableNames:''
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'Streams'
    17 	category:'Streams'
    18 !
    18 !
    19 
    19 
    20 !WriteStream class methodsFor:'documentation'!
    20 !WriteStream class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    38     Streams for writing into - this implementation currently DOES change the 
    38     Streams for writing into - this implementation currently DOES change the 
    39     identity if the streamed-upon collection IF it cannot grow easily. 
    39     identity if the streamed-upon collection IF it cannot grow easily. 
    40     Collections which cannot grow easily are for example: Array, ByteArray and String.
    40     Collections which cannot grow easily are for example: Array, ByteArray and String.
    41     Thus it is slightly incompatible to ST-80 since 'aStream contents' does 
    41     Thus it is slightly incompatible to ST-80 since 'aStream contents' does 
    42     not always return the original collection. This may change.
    42     not always return the original collection. This may change.
       
    43 
       
    44     [author:]
       
    45         Claus Gittinger
    43 "
    46 "
    44 ! !
    47 ! !
    45 
    48 
    46 !WriteStream methodsFor:'accessing'!
    49 !WriteStream methodsFor:'accessing'!
    47 
    50 
   309 ! !
   312 ! !
   310 
   313 
   311 !WriteStream class methodsFor:'documentation'!
   314 !WriteStream class methodsFor:'documentation'!
   312 
   315 
   313 version
   316 version
   314     ^ '$Header: /cvs/stx/stx/libbasic/Attic/WriteStr.st,v 1.25 1996-04-02 22:14:55 cg Exp $'
   317     ^ '$Header: /cvs/stx/stx/libbasic/Attic/WriteStr.st,v 1.26 1996-04-25 17:00:29 cg Exp $'
   315 ! !
   318 ! !