Collection.st
changeset 22265 7c137ebc9abe
parent 22250 6badcfcf263c
child 22274 ed88bf014cb3
--- a/Collection.st	Mon Sep 18 11:21:53 2017 +0200
+++ b/Collection.st	Tue Sep 19 16:35:11 2017 +0200
@@ -1965,18 +1965,21 @@
 
 asSignedIntegerArray
     "return a new SignedIntegerArray with the collection's elements
-     (which must convert to 32bit signed integers in the range -16r80000000..16r7FFFFFFF)."
+     (which must convert to 32bit signed integers in the range 16r-80000000..16r7FFFFFFF)."
 
     ^ self asIntegerArray:SignedIntegerArray
 
     "Created: / 07-10-2011 / 13:14:01 / cg"
+    "Modified (comment): / 19-09-2017 / 16:32:11 / stefan"
 !
 
 asSignedLongIntegerArray
     "return a new LongIntegerArray with the collection's elements
-     (which must convert to 64bit integers in the range -16r8000000000000000..16r7FFFFFFFFFFFFFFF)."
+     (which must convert to 64bit integers in the range 16r-8000000000000000..16r7FFFFFFFFFFFFFFF)."
 
     ^ self asIntegerArray:SignedLongIntegerArray
+
+    "Modified (comment): / 19-09-2017 / 16:32:17 / stefan"
 !
 
 asSignedWordArray