ActorStream.st
changeset 5157 ad4d06ecfb6c
parent 5153 9bf4a6f51b33
child 5165 4a704dcb76f9
equal deleted inserted replaced
5156:949147d12e31 5157:ad4d06ecfb6c
   127 !
   127 !
   128 
   128 
   129 nextPutAll:something
   129 nextPutAll:something
   130     "put all elements of something onto the stream by evaluating
   130     "put all elements of something onto the stream by evaluating
   131      the nextPutAllBlock with something as argument.
   131      the nextPutAllBlock with something as argument.
   132      If there is no nextPutAllBlock, nextPuts will be used (as inherited)"
   132      If there is no nextPutAllBlock, nextPuts will be used (as inherited).
       
   133      Answer the receiver."
   133 
   134 
   134     nextPutAllBlock notNil ifTrue:[    
   135     nextPutAllBlock notNil ifTrue:[    
   135         nextPutAllBlock value:something.
   136         nextPutAllBlock value:something.
   136     ] ifFalse:[
   137     ] ifFalse:[
   137         super nextPutAll:something
   138         super nextPutAll:something