CharacterSet.st
changeset 4957 a37f0835ddf3
parent 3460 d965c11358b7
equal deleted inserted replaced
4956:f5404f992dc1 4957:a37f0835ddf3
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 Collection subclass:#CharacterSet
    16 Collection subclass:#CharacterSet
    15 	instanceVariableNames:'bits'
    17 	instanceVariableNames:'bits'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
   137 
   139 
   138 hash
   140 hash
   139     ^ bits hash
   141     ^ bits hash
   140 ! !
   142 ! !
   141 
   143 
   142 !CharacterSet methodsFor:'copying'!
   144 !CharacterSet methodsFor:'copying-private'!
   143 
   145 
   144 postCopy
   146 postCopy
   145     "make sure that the bitmap is not shared with the copy"
   147     "make sure that the bitmap is not shared with the copy"
   146 
   148 
   147     bits := bits copy
   149     bits := bits copy
   237 ! !
   239 ! !
   238 
   240 
   239 !CharacterSet class methodsFor:'documentation'!
   241 !CharacterSet class methodsFor:'documentation'!
   240 
   242 
   241 version
   243 version
   242     ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.5 2014-12-28 14:08:18 cg Exp $'
   244     ^ '$Header$'
   243 !
   245 !
   244 
   246 
   245 version_CVS
   247 version_CVS
   246     ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.5 2014-12-28 14:08:18 cg Exp $'
   248     ^ '$Header$'
   247 ! !
   249 ! !
   248 
   250