Dec. 27, 2013
3:34 p.m.
Hi Iâm trying to understand asciiValue skipSeparators | nextChar | [(nextChar := self peek) not Nil and: [SeparatorCharacters includes: nextChar]] whileTrue: [self next]. SeparatorCharacters is a CharacterSet nextChar is an integer and CharacterSet>>includes: aCharacter aCharacter asciiValue >= 256 ifTrue: [^ false]. ^ (map at aCharacter asciiValue + 1) >0 but Iâm stuck. Stef