LargeInteger.st
branchjv
changeset 18079 7b5afc0ad3d5
parent 18066 89d51443ba6f
parent 15577 cc63cd495a01
child 18084 ab5b38bd8f81
--- a/LargeInteger.st	Thu Jul 25 13:04:52 2013 +0100
+++ b/LargeInteger.st	Thu Aug 01 10:22:20 2013 +0100
@@ -1496,6 +1496,14 @@
     "Modified: / 5.5.1999 / 14:57:03 / stefan"
 !
 
+digitBytesMSB
+    "return a byteArray filled with the receivers bits
+     (8 bits of the absolute value per element),
+     most significant byte first"
+
+     ^ digitByteArray copyReverse.
+!
+
 digitBytesMSB:msbFlag
     "return a byteArray filled with the receivers bits
      (8 bits of the absolute value per element),
@@ -2523,7 +2531,7 @@
     "Modified: / 9.1.1998 / 13:27:37 / cg"
 ! !
 
-!LargeInteger methodsFor:'modulu arithmetic'!
+!LargeInteger methodsFor:'modulo arithmetic'!
 
 plus32:aNumber
     "return the sum of the receiver and the argument, as SmallInteger.
@@ -5222,10 +5230,10 @@
 !LargeInteger class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.210 2013-05-27 08:13:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.212 2013-07-30 10:56:22 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.210 2013-05-27 08:13:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.212 2013-07-30 10:56:22 stefan Exp $'
 ! !