[FIX][DOC] LargePositiveInteger #~= method comment

David T. Lewis lewis at mail.msen.com
Wed Aug 7 10:43:57 UTC 2002


The method comment for ~= claimed that it answers true if receiver
is equal to the argument. This fixes the comment.

- Dave


--ibTvN161/egqYuK8
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="LargePosIntDocFix-dtl.1.cs"

'From Squeak 3.2 of 11 July 2002 [latest update: #4917] on 7 August 2002 at 7:20:11 am'!
"Change Set:		LargePositiveInteger method comment fix
Date:			7 August 2002
Author:			David T. Lewis

The method comment for ~= claimed that it answers true if receiver
is equal to the argument. This fixes the comment."!


!LargePositiveInteger methodsFor: 'comparing' stamp: 'dtl 8/7/2002 06:44'!
~= anInteger 
	"Primitive. Compare the receiver with the argument and answer true if
	the receiver is not equal to the argument. Otherwise answer false. Fail
	if the receiver or argument is negative or greater than 32 bits.
	Optional. See Object documentation whatIsAPrimitive."

	<primitive: 8>
	^ super ~= anInteger! !


More information about the Squeak-dev mailing list