CharacterArray.st
changeset 21283 91977c9e46d5
parent 21255 81aa6fa65292
child 21292 21faad473411
child 21318 ba0cd7a99ede
--- a/CharacterArray.st	Tue Jan 24 18:59:40 2017 +0100
+++ b/CharacterArray.st	Tue Jan 24 19:01:12 2017 +0100
@@ -358,6 +358,7 @@
     "Created: 3.8.1997 / 18:16:40 / cg"
 ! !
 
+
 !CharacterArray class methodsFor:'cleanup'!
 
 lowSpaceCleanup
@@ -642,6 +643,7 @@
     "
 ! !
 
+
 !CharacterArray class methodsFor:'pattern matching'!
 
 matchEscapeCharacter
@@ -1047,6 +1049,7 @@
     ^ Unicode32String
 ! !
 
+
 !CharacterArray methodsFor:'Compatibility-ANSI'!
 
 addLineDelimiters
@@ -4996,6 +4999,8 @@
 ! !
 
 
+
+
 !CharacterArray methodsFor:'matching - glob expressions'!
 
 compoundMatch:aString
@@ -6433,6 +6438,14 @@
     "Modified: / 06-03-2007 / 11:51:15 / cg"
 !
 
+speciesForSubcollection
+    "answer the class, when splitting instances into subcollections"
+
+    ^ StringCollection
+
+    "Created: / 24-01-2017 / 18:54:18 / stefan"
+!
+
 stringSpecies
     "return the underlying strings bitsPerCharacter
      (i.e. is it a regular String or a TwoByteString)"
@@ -6473,6 +6486,7 @@
     "Modified: 17.4.1997 / 12:50:23 / cg"
 ! !
 
+
 !CharacterArray methodsFor:'special string converting'!
 
 asUnixFilenameString
@@ -7515,6 +7529,7 @@
     "
 ! !
 
+
 !CharacterArray methodsFor:'substring searching'!
 
 findRangeOfString:subString
@@ -8328,6 +8343,7 @@
     ^ aVisitor visitString:self with:aParameter
 ! !
 
+
 !CharacterArray class methodsFor:'documentation'!
 
 version