#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Sun, 23 Sep 2018 03:49:09 +0200
changeset 23382 e11a8bed0f9e
parent 23381 e02ede0d6d8d
child 23383 2884fe465c09
#FEATURE by cg class: Integer comment/format in: #hexPrintString
Integer.st
--- a/Integer.st	Sun Sep 23 03:48:17 2018 +0200
+++ b/Integer.st	Sun Sep 23 03:49:09 2018 +0200
@@ -1233,7 +1233,6 @@
     ^ self == Integer
 ! !
 
-
 !Integer methodsFor:'Compatibility-Dolphin'!
 
 highWord
@@ -4415,16 +4414,19 @@
 !
 
 hexPrintString
-    "return a hex string representation of the receiver"
+    "return a hex string representation of the receiver.
+     Notice: this is not padded in any way"
 
     ^ self printStringRadix:16
 
     "
+     9 hexPrintString
      127 hexPrintString
      -1 hexPrintString
     "
 
-    "Modified: / 11.10.1998 / 01:15:43 / cg"
+    "Modified: / 11-10-1998 / 01:15:43 / cg"
+    "Modified (comment): / 23-09-2018 / 03:48:57 / Claus Gittinger"
 !
 
 hexPrintString:size
@@ -5172,7 +5174,6 @@
     "Created: / 09-01-2012 / 17:18:06 / cg"
 ! !
 
-
 !Integer methodsFor:'special modulo arithmetic'!
 
 add_32:anInteger