transforms/Xtreams__InterpretedReadStream.st
changeset 97 2a7827f4dce2
parent 72 d16c7d84d4a8
child 111 44ac233b2f83
equal deleted inserted replaced
96:85e395d8e3d7 97:2a7827f4dce2
     3 "{ NameSpace: Xtreams }"
     3 "{ NameSpace: Xtreams }"
     4 
     4 
     5 ReadStream subclass:#InterpretedReadStream
     5 ReadStream subclass:#InterpretedReadStream
     6 	instanceVariableNames:'elementSize cache cacheSize operation contentsSpecies'
     6 	instanceVariableNames:'elementSize cache cacheSize operation contentsSpecies'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:'XtreamsPool'
     8 	poolDictionaries:'Xtreams::XtreamsPool'
     9 	category:'Xtreams-Transforms'
     9 	category:'Xtreams-Transforms'
    10 !
    10 !
    11 
    11 
    12 InterpretedReadStream comment:'Interprets bytes from a binary source as values of preconfigured (primitive) CType, e.g. float, long etc.
    12 InterpretedReadStream comment:'Interprets bytes from a binary source as values of preconfigured (primitive) CType, e.g. float, long etc.
    13 
    13