new: #digitBytesMSB
authorStefan Vogel <sv@exept.de>
Sun, 28 Jul 2013 21:35:11 +0200
changeset 15569 8a82c6a65677
parent 15568 e6ce93f948be
child 15570 e537a8a1e428
new: #digitBytesMSB
LargeInteger.st
--- a/LargeInteger.st	Sun Jul 28 21:35:06 2013 +0200
+++ b/LargeInteger.st	Sun Jul 28 21:35:11 2013 +0200
@@ -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),
@@ -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.211 2013-07-28 19:35:11 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.211 2013-07-28 19:35:11 stefan Exp $'
 ! !