File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Grease-Pharo100-Core.package/GRPharoZnCodecStream.class/instance
Grease-Pharo90-Core.package/GRPharoZnUtf8CodecStream.class/instance Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11accessing
22greaseNext: anInteger putAll: aCollection startingAt: startIndex
3- self nextPutAll: (aCollection copyFrom: startIndex to : startIndex + anInteger - 1 )
3+ encoder next: anInteger putAll: aCollection startingAt : startIndex toStream: stream
Original file line number Diff line number Diff line change 11streaming
22nextPutAll: aString
3- aString asString do: [ :each | self nextPut: each ]
3+ | string |
4+ string := aString asString.
5+ encoder next: string size putAll: string startingAt: 1 toStream: stream
Original file line number Diff line number Diff line change 11accessing
22greaseNext: anInteger putAll: aCollection startingAt: startIndex
3- self nextPutAll: (aCollection copyFrom: startIndex to : startIndex + anInteger - 1 )
3+ encoder next: anInteger putAll: aCollection startingAt : startIndex toStream: stream
Original file line number Diff line number Diff line change 11streaming
22nextPutAll: aString
3- aString asString do: [ :each | self nextPut: each ]
3+ | string |
4+ string := aString asString.
5+ encoder next: string size putAll: string startingAt: 1 toStream: stream
You can’t perform that action at this time.
0 commit comments