[Pkg] The Trunk: Kernel-nice.719.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Dec 11 18:48:33 UTC 2012


Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.719.mcz

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

Name: Kernel-nice.719
Author: nice
Time: 11 December 2012, 7:47:52.216 pm
UUID: a78236cc-0105-464b-a69c-4df3f6926f1e
Ancestors: Kernel-ar.718

#floorLog: is not robust to Float overflow/underflow while #log: now is. Let the robust #log: do its job.

=============== Diff against Kernel-ar.718 ===============

Item was changed:
  ----- Method: Number>>floorLog: (in category 'mathematical functions') -----
  floorLog: radix
  	"Answer the floor of the log base radix of the receiver."
  
+ 	^(self log: radix) floor!
- 	^ self asFloat floorLog: radix
- !



More information about the Packages mailing list