#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 26 Jul 2016 15:35:07 +0200
changeset 20176 2e68059772c7
parent 20175 6c184327b58b
child 20177 0eaabd41cd8a
#DOCUMENTATION by cg class: UninterpretedBytes comment/format in: #hexPrintString #hexPrintStringWithSeparator:
UninterpretedBytes.st
--- a/UninterpretedBytes.st	Tue Jul 26 13:55:05 2016 +0200
+++ b/UninterpretedBytes.st	Tue Jul 26 15:35:07 2016 +0200
@@ -4621,6 +4621,7 @@
     "
      #[1 2 3 4 10 17] hexPrintString
      ByteArray fromHexString:#[1 2 3 4 10 17] hexPrintString
+     'hello' hexPrintString
     "
 
     "Modified: / 03-07-2010 / 01:59:19 / cg"
@@ -4639,6 +4640,7 @@
       #[1 2 3 4 10 17] hexPrintStringWithSeparator:Character space
       #[1 2 3 4 10 17] hexPrintStringWithSeparator:' - '
       #[1 2 3 4 10 17] hexPrintStringWithSeparator:nil
+      'hello' hexPrintStringWithSeparator:'.'
     "
 ! !