LinkedList.st
changeset 4063 998e2be3d244
parent 2350 20640ffa5141
child 4300 7378b8d2ba04
--- a/LinkedList.st	Fri Mar 19 21:42:23 1999 +0100
+++ b/LinkedList.st	Fri Mar 19 21:45:01 1999 +0100
@@ -74,6 +74,10 @@
     at the front and added at the end.
     (the schedulers process handling code does this to manage process lists.)
 
+    [memory requirements:]
+        (OBJ-HEADER + (3 * ptr-size)) * size
+                    + any additional instvars due to subclassing
+
     [author:]
         Claus Gittinger
 
@@ -407,5 +411,5 @@
 !LinkedList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.29 1997-02-01 11:02:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.30 1999-03-19 20:45:01 cg Exp $'
 ! !