SelectingReadStream.st
changeset 2908 505c2f7bb21d
parent 2366 45a774d5420c
child 3091 bb830e805f01
equal deleted inserted replaced
2907:180ea50c301b 2908:505c2f7bb21d
       
     1 "
       
     2  COPYRIGHT (c) 2009 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
     2 
    13 
     3 Stream subclass:#SelectingReadStream
    14 Stream subclass:#SelectingReadStream
     4 	instanceVariableNames:'selectBlock hasReadAhead readAhead inStream'
    15 	instanceVariableNames:'selectBlock hasReadAhead readAhead inStream'
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'Streams-Misc'
    18 	category:'Streams-Misc'
     8 !
    19 !
     9 
    20 
    10 !SelectingReadStream class methodsFor:'documentation'!
    21 !SelectingReadStream class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2009 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 
       
    35 "
       
    36 !
    11 
    37 
    12 documentation
    38 documentation
    13 "
    39 "
    14     A stream which only delivers elements for which a select block returns true
    40     A stream which only delivers elements for which a select block returns true
    15     from an underlying stream. 
    41     from an underlying stream. 
    86 ! !
   112 ! !
    87 
   113 
    88 !SelectingReadStream class methodsFor:'documentation'!
   114 !SelectingReadStream class methodsFor:'documentation'!
    89 
   115 
    90 version_CVS
   116 version_CVS
    91     ^ '$Header: /cvs/stx/stx/libbasic2/SelectingReadStream.st,v 1.2 2009-12-05 11:17:29 cg Exp $'
   117     ^ '$Header: /cvs/stx/stx/libbasic2/SelectingReadStream.st,v 1.3 2013-03-06 17:13:20 cg Exp $'
    92 ! !
   118 ! !
       
   119