SignedIntegerArray.st
author Claus Gittinger <cg@exept.de>
Wed, 18 Jul 2007 14:16:40 +0200
changeset 1891 af37298a4b38
parent 1574 0c15fa756ca4
child 2641 9093942ea3a8
permissions -rw-r--r--
printing/storing; ms handling

"
 COPYRIGHT (c) 1997 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libbasic2' }"

UnboxedIntegerArray variableSignedLongSubclass:#SignedIntegerArray
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Collections-Arrayed'
!

!SignedIntegerArray class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    SignedIntegerArrays store 32bit signed integers in the range -16r80000000..16r7FFFFFFF.
    In contrast to normal arrays (which store pointers to their elements),
    signedIntegerArrays store the values in a dense & compact way. 
    Since the representation fits the underlying C-language systems representation
    of signed int32's, this is also useful to pass bulk data to c primitive code.

    [memory requirements:]
        OBJ-HEADER + (size * 4)

    [see also:]
        ByteArray BooleanArray FloatArray DoubleArray Array
        SignedWordArray WordArray IntegerArray LongIntegerArray
        SignedLongIntegerArray

    [author:]
        Claus Gittinger
"
! !

!SignedIntegerArray class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic2/SignedIntegerArray.st,v 1.5 2005-10-13 12:46:07 cg Exp $'
! !