LinkedList.st
changeset 4300 7378b8d2ba04
parent 4063 998e2be3d244
child 5244 7ddbb129a552
equal deleted inserted replaced
4299:2028db93d182 4300:7378b8d2ba04
   130 !LinkedList class methodsFor:'instance creation'!
   130 !LinkedList class methodsFor:'instance creation'!
   131 
   131 
   132 new
   132 new
   133     "create and return a new LinkedList"
   133     "create and return a new LinkedList"
   134 
   134 
   135     ^ super new initialize
   135     ^ self basicNew initialize
   136 ! !
   136 ! !
   137 
   137 
   138 !LinkedList methodsFor:'accessing'!
   138 !LinkedList methodsFor:'accessing'!
   139 
   139 
   140 at:index
   140 at:index
   409 ! !
   409 ! !
   410 
   410 
   411 !LinkedList class methodsFor:'documentation'!
   411 !LinkedList class methodsFor:'documentation'!
   412 
   412 
   413 version
   413 version
   414     ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.30 1999-03-19 20:45:01 cg Exp $'
   414     ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.31 1999-06-18 22:49:38 cg Exp $'
   415 ! !
   415 ! !