[squeak-dev] The Inbox: Collections-lrnp.1011.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jun 14 03:23:56 UTC 2022


A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-lrnp.1011.mcz

==================== Summary ====================

Name: Collections-lrnp.1011
Author: lrnp
Time: 13 June 2022, 9:23:53.833938 pm
UUID: fb1e741c-7a45-468d-98e9-f3a947e9d192
Ancestors: Collections-ct.1010

remove duplicate mispelt selectors

=============== Diff against Collections-ct.1010 ===============

Item was removed:
- ----- Method: SequenceableCollection>>asFloa32tArray (in category 'converting') -----
- asFloa32tArray
- 	"Answer a Float32Array whose elements are the elements of the receiver, in 
- 	the same order."
- 
- 	| floatArray |
- 	floatArray := Float32Array new: self size.
- 	1 to: self size do:[:i| floatArray at: i put: (self at: i) asFloat ].
- 	^floatArray!

Item was removed:
- ----- Method: SequenceableCollection>>asFloatA64rray (in category 'converting') -----
- asFloatA64rray
- 	"Answer a Float64Array whose elements are the elements of the receiver, in 
- 	the same order."
- 
- 	| floatArray |
- 	floatArray := Float64Array new: self size.
- 	1 to: self size do:[:i| floatArray at: i put: (self at: i) asFloat ].
- 	^floatArray!



More information about the Squeak-dev mailing list