ImmutableArray.st
changeset 1284 c3829892852b
parent 660 7a512a3ddd08
child 1296 41f533f705cd
equal deleted inserted replaced
1283:2c533653efa3 1284:c3829892852b
     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 
    12 
    13 Array subclass:#ImmutableArray
    13 Array subclass:#ImmutableArray
    14 	 instanceVariableNames:''
    14 	instanceVariableNames:''
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'System-Compiler-Support'
    17 	category:'System-Compiler-Support'
    18 !
    18 !
    19 
    19 
    20 !ImmutableArray class methodsFor:'documentation'!
    20 !ImmutableArray class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
   181 ! !
   181 ! !
   182 
   182 
   183 !ImmutableArray class methodsFor:'documentation'!
   183 !ImmutableArray class methodsFor:'documentation'!
   184 
   184 
   185 version
   185 version
   186     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.12 1995-12-03 12:15:31 cg Exp $'
   186     ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.13 1996-04-25 11:15:15 cg Exp $'
   187 ! !
   187 ! !