Array.st
changeset 1290 15ba3221b89b
parent 1276 21649f929b32
child 1399 fd17bde5f3a2
equal deleted inserted replaced
1289:3abde2c376de 1290:15ba3221b89b
    69       #('foo' #(1 2) #foo)    -> 3 elements: a String, another array and a symbol
    69       #('foo' #(1 2) #foo)    -> 3 elements: a String, another array and a symbol
    70       #('foo' (1 2) foo)      -> same as above
    70       #('foo' (1 2) foo)      -> same as above
    71       #(nil true #true)       -> 3 elements: nil, true and a symbol (watch out)
    71       #(nil true #true)       -> 3 elements: nil, true and a symbol (watch out)
    72       #(two [3 3 3] (4 4 4))  -> 3 elements: a symbol, a byteArray and another array
    72       #(two [3 3 3] (4 4 4))  -> 3 elements: a symbol, a byteArray and another array
    73 
    73 
       
    74 
       
    75     [author:]
       
    76         Claus Gittinger
    74 
    77 
    75     [see also:]
    78     [see also:]
    76         OrderedCollection
    79         OrderedCollection
    77         ByteArray FloatArray DoubleArray
    80         ByteArray FloatArray DoubleArray
    78         String
    81         String
  1616 ! !
  1619 ! !
  1617 
  1620 
  1618 !Array class methodsFor:'documentation'!
  1621 !Array class methodsFor:'documentation'!
  1619 
  1622 
  1620 version
  1623 version
  1621     ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.67 1996-04-24 13:35:02 cg Exp $'
  1624     ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.68 1996-04-25 16:13:49 cg Exp $'
  1622 ! !
  1625 ! !