[squeak-dev] The Trunk: Kernel-nice.1229.mcz

K K Subbu kksubbu.ml at gmail.com
Thu May 9 17:04:44 UTC 2019


On 09/05/19 8:14 AM, commits at source.squeak.org wrote:
>    	^ arg >= 0
>    		ifTrue: [(self negated bitShift: arg) negated]
>    		ifFalse: [(self bitInvert bitShift: arg) bitInvert]!
should this also be split into

	arg = 0 ifTrue: [^self].
	arg > 0
		...

Regards .. Subbu


More information about the Squeak-dev mailing list