ImmutableString.st
changeset 16824 d609e592fd2f
parent 16400 6c38fd2957bc
child 17373 2dcc19464bd0
equal deleted inserted replaced
16823:48a3b8612594 16824:d609e592fd2f
    98 
    98 
    99 !ImmutableString methodsFor:'converting'!
    99 !ImmutableString methodsFor:'converting'!
   100 
   100 
   101 asImmutableString
   101 asImmutableString
   102     ^ self
   102     ^ self
       
   103 !
       
   104 
       
   105 asMutableCollection
       
   106     "return a writable copy of myself"
       
   107 
       
   108     ^ self copy changeClassTo:String
   103 ! !
   109 ! !
   104 
   110 
   105 !ImmutableString methodsFor:'copying'!
   111 !ImmutableString methodsFor:'copying'!
   106 
   112 
   107 postCopy
   113 postCopy
   186 ! !
   192 ! !
   187 
   193 
   188 !ImmutableString class methodsFor:'documentation'!
   194 !ImmutableString class methodsFor:'documentation'!
   189 
   195 
   190 version
   196 version
   191     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableString.st,v 1.14 2014-05-06 20:21:23 cg Exp $'
   197     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableString.st,v 1.15 2014-08-23 17:44:00 cg Exp $'
   192 !
   198 !
   193 
   199 
   194 version_CVS
   200 version_CVS
   195     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableString.st,v 1.14 2014-05-06 20:21:23 cg Exp $'
   201     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableString.st,v 1.15 2014-08-23 17:44:00 cg Exp $'
   196 ! !
   202 ! !
   197 
   203