IntegerArray.st
changeset 736 db164846b078
parent 601 9f043e153af4
child 1177 f81425b27be5
equal deleted inserted replaced
735:6ca1d0dd6526 736:db164846b078
     1 "
     1 "
     2  COPYRIGHT (c) 1989 by Claus Gittinger
     2  COPYRIGHT (c) 1997 by eXept Software AG
     3 	      All Rights Reserved
     3 	      All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
     6  only in accordance with the terms of that license and with the
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
    39     In contrast to normal arrays (which store pointers to their elements),
    39     In contrast to normal arrays (which store pointers to their elements),
    40     integerArrays store the values in a dense & compact way. 
    40     integerArrays store the values in a dense & compact way. 
    41     Since the representation fits the underlying C-language systems representation
    41     Since the representation fits the underlying C-language systems representation
    42     of unsigned int32's, this is also useful to pass bulk data to c primitive code.
    42     of unsigned int32's, this is also useful to pass bulk data to c primitive code.
    43 
    43 
       
    44     [memory requirements:]
       
    45         OBJ-HEADER + (size * 4)
       
    46 
    44     [see also:]
    47     [see also:]
    45 	ByteArray BooleanArray FloatArray DoubleArray Array
    48         ByteArray BooleanArray FloatArray DoubleArray Array
    46 	SignedWordArray WordArray
    49         SignedWordArray WordArray
    47 
    50 
    48     [author:]
    51     [author:]
    49 	Claus Gittinger
    52         Claus Gittinger
    50 "
    53 "
    51 ! !
    54 ! !
    52 
    55 
    53 !IntegerArray class methodsFor:'documentation'!
    56 !IntegerArray class methodsFor:'documentation'!
    54 
    57 
    55 version
    58 version
    56     ^ '$Header: /cvs/stx/stx/libbasic2/IntegerArray.st,v 1.1 1998-01-12 13:25:40 cg Exp $'
    59     ^ '$Header: /cvs/stx/stx/libbasic2/IntegerArray.st,v 1.2 1999-03-19 20:42:01 cg Exp $'
    57 ! !
    60 ! !