Array.st
changeset 4062 4959de96b06f
parent 3979 46a2da9b917d
child 4122 7e3b6b267c06
--- a/Array.st	Fri Mar 19 08:33:38 1999 +0100
+++ b/Array.st	Fri Mar 19 21:42:23 1999 +0100
@@ -57,7 +57,7 @@
 
     Literal arrays (i.e. array-constants) are entered in source as:
 
-	#( element1 element2 ... element-n)
+        #( element1 element2 ... element-n)
 
     where each element must be itself a literal constant.
     Array, symbol and byteArray constants within an array can be written
@@ -72,17 +72,20 @@
       #(nil true #true)       -> 3 elements: nil, true and a symbol (watch out)
       #(two [3 3 3] (4 4 4))  -> 3 elements: a symbol, a byteArray and another array
 
+    [memory requirements:]
+        OBJ-HEADER + (size * ptr-size)
+
     [warning:]
-	read the warning about 'growing fixed size collection'
-	in ArrayedCollection's documentation
+        read the warning about 'growing fixed size collection'
+        in ArrayedCollection's documentation
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 
     [see also:]
-	OrderedCollection
-	ByteArray FloatArray DoubleArray
-	String
+        OrderedCollection
+        ByteArray FloatArray DoubleArray
+        String
 "
 ! !
 
@@ -2314,5 +2317,5 @@
 !Array class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.111 1999-02-12 14:53:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.112 1999-03-19 20:42:23 cg Exp $'
 ! !