[squeak-dev] FFI: FFI-Kernel-mt.188.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 6 16:30:55 UTC 2021


Marcel Taeumel uploaded a new version of FFI-Kernel to project FFI:
http://source.squeak.org/FFI/FFI-Kernel-mt.188.mcz

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

Name: FFI-Kernel-mt.188
Author: mt
Time: 6 August 2021, 6:30:54.160096 pm
UUID: 26659a26-1cfc-2540-8e26-30392b0f99b1
Ancestors: FFI-Kernel-mt.187

Adds #atAllPut:, which is common to raw-bits arrays and other sequenceable collections.

=============== Diff against FFI-Kernel-mt.187 ===============

Item was added:
+ ----- Method: ExternalData>>atAllPut: (in category 'accessing') -----
+ atAllPut: anObject
+ 
+ 	self sizeCheck.	
+ 	1 to: self size do:
+ 		[:index | self at: index put: anObject].!



More information about the Squeak-dev mailing list