class: CharacterArray
authorClaus Gittinger <cg@exept.de>
Tue, 23 Sep 2014 22:49:18 +0200
changeset 16855 c088880a590b
parent 16854 5a21f02f64fd
child 16856 dd0c453b908f
class: CharacterArray comment/format in: #withoutAllSpaces category of: #_ARRAYLENGTH: #_CHECKCAST: #_INSTANCEOF:
CharacterArray.st
--- a/CharacterArray.st	Tue Sep 23 22:39:24 2014 +0200
+++ b/CharacterArray.st	Tue Sep 23 22:49:18 2014 +0200
@@ -283,6 +283,7 @@
     "Created: 3.8.1997 / 18:16:40 / cg"
 ! !
 
+
 !CharacterArray class methodsFor:'cleanup'!
 
 lowSpaceCleanup
@@ -724,6 +725,7 @@
     ^ self == CharacterArray
 ! !
 
+
 !CharacterArray methodsFor:'Compatibility-ANSI'!
 
 addLineDelimiters
@@ -1617,6 +1619,7 @@
     ^ true
 ! !
 
+
 !CharacterArray methodsFor:'JavaScript support'!
 
 unquote
@@ -4121,6 +4124,8 @@
 ! !
 
 
+
+
 !CharacterArray methodsFor:'matching - glob expressions'!
 
 compoundMatch:aString
@@ -4804,6 +4809,7 @@
 ! !
 
 
+
 !CharacterArray methodsFor:'padded copying'!
 
 centerPaddedTo:newSize
@@ -5432,6 +5438,7 @@
     "Modified: 17.4.1997 / 12:50:23 / cg"
 ! !
 
+
 !CharacterArray methodsFor:'special string converting'!
 
 asUnixFilenameString
@@ -6094,6 +6101,8 @@
 !
 
 withoutAllSpaces
+    "return a copy of the receiver with all whitespace removed"
+
     ^ self asCollectionOfWords asStringWith:''.
 "/    |col string|
 "/
@@ -6405,6 +6414,7 @@
     "
 ! !
 
+
 !CharacterArray methodsFor:'substring searching'!
 
 findRangeOfString:subString
@@ -6991,11 +7001,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.540 2014-07-20 21:19:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.541 2014-09-23 20:49:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.540 2014-07-20 21:19:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.541 2014-09-23 20:49:18 cg Exp $'
 ! !