MultiReadStream.st
changeset 3287 c684c48697d0
parent 3272 7e58d594ab27
child 4090 07de7c4cf517
equal deleted inserted replaced
3286:9c62bd367418 3287:c684c48697d0
    10 !MultiReadStream class methodsFor:'documentation'!
    10 !MultiReadStream class methodsFor:'documentation'!
    11 
    11 
    12 documentation
    12 documentation
    13 "
    13 "
    14     Stacked streams. At any time, another stream can be stacked onto
    14     Stacked streams. At any time, another stream can be stacked onto
    15     a stream stack. Making this streams contents to be returned before the
    15     a stream stack. Making this stream's contents to be returned before the
    16     rest. To the stream reader, this looks like a bunch of embedded streams.
    16     rest. To the stream reader, this looks like a single stream delivering the
       
    17     embedded stream contents sequentially.
    17 
    18 
    18     Useful when reading files which include each other, or to handle
    19     Useful when reading files which include each other, or to handle
    19     define-macro expansion in a c-parser.
    20     define-macro expansion in a c-parser.
    20 
    21 
    21     [Author:]
    22     [Author:]
   161 ! !
   162 ! !
   162 
   163 
   163 !MultiReadStream class methodsFor:'documentation'!
   164 !MultiReadStream class methodsFor:'documentation'!
   164 
   165 
   165 version_CVS
   166 version_CVS
   166     ^ '$Header: /cvs/stx/stx/libbasic2/MultiReadStream.st,v 1.8 2014-04-30 18:20:58 cg Exp $'
   167     ^ '$Header: /cvs/stx/stx/libbasic2/MultiReadStream.st,v 1.9 2014-05-29 10:34:42 cg Exp $'
   167 ! !
   168 ! !
   168 
   169