SignedLongIntegerArray.st
changeset 22271 94ce5c015947
parent 20650 aa96939e894b
child 23962 fae83231f837
--- a/SignedLongIntegerArray.st	Tue Sep 19 16:39:49 2017 +0200
+++ b/SignedLongIntegerArray.st	Tue Sep 19 16:39:56 2017 +0200
@@ -39,7 +39,7 @@
 documentation
 "
     SignedLongIntegerArrays store 64bit signed integers in the range 
-    -16r8000000000000000..16r7FFFFFFFFFFFFFFF.
+    16r-8000000000000000..16r7FFFFFFFFFFFFFFF.
     In contrast to normal arrays (which store pointers to their elements),
     signedLongIntegerArrays store the values in a dense & compact way. 
     Since the representation fits the underlying C-language systems representation
@@ -59,6 +59,8 @@
 "
 ! !
 
+
+
 !SignedLongIntegerArray class methodsFor:'queries'!
 
 elementByteSize
@@ -83,9 +85,13 @@
      For SignedLongIntegerArrays, this is -9223372036854775808 eg. -16r8000000000000000 
      (smallest 64bit signed int)"
 
-    ^ -16r8000000000000000
+    ^ 16r-8000000000000000
+
+    "Modified (format): / 19-09-2017 / 16:31:35 / stefan"
 ! !
 
+
+
 !SignedLongIntegerArray class methodsFor:'documentation'!
 
 version