diff -r 94a519213339 -r 7781da9ddc6e Number.st --- a/Number.st Wed Jul 26 12:59:50 2017 +0200 +++ b/Number.st Wed Jul 26 13:01:18 2017 +0200 @@ -592,6 +592,7 @@ "Modified (comment): / 08-06-2017 / 13:58:36 / mawalch" ! ! + !Number class methodsFor:'constants'! e @@ -834,6 +835,7 @@ " ! ! + !Number class methodsFor:'private'! readMantissaAndScaleFrom:aStream radix:radix @@ -928,6 +930,7 @@ ^ self == Number ! ! + !Number methodsFor:'Compatibility-Squeak'! asSmallAngleDegrees @@ -1086,6 +1089,7 @@ "Modified: / 25-07-2017 / 15:58:46 / cg" ! ! + !Number methodsFor:'coercing & converting'! i @@ -1714,8 +1718,8 @@ or:[self generality < 1.0 generality]) ifTrue:[ |f| - "/ do not make this a longfloat; - "/ r will return a longFloat then, and Image roated will fail then... + "/ do not make this a LongFloat; + "/ r will return a LongFloat then, and Image rotated will fail then... (f := self asFloat) isFinite ifTrue:[ ^ f sqrt. ]. @@ -1724,6 +1728,7 @@ ^ self sqrt_withAccuracy:self epsilon "Modified (format): / 11-07-2017 / 13:32:02 / cg" + "Modified (format): / 26-07-2017 / 12:30:16 / mawalch" ! timesTwoPower:anInteger @@ -3304,6 +3309,7 @@ "Modified: / 5.11.2001 / 17:54:22 / cg" ! ! + !Number class methodsFor:'documentation'! version