FloatArray.st
author Claus Gittinger <cg@exept.de>
Tue, 14 Nov 1995 20:02:34 +0100
changeset 544 d78012b20769
parent 530 07d0bce293c9
child 603 72bdeb24ccba
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      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.
"

ArrayedCollection variableFloatSubclass:#FloatArray
       instanceVariableNames:''
       classVariableNames:''
       poolDictionaries:''
       category:'Collections-Arrayed'
!

!FloatArray class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      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.
"
!

version
    ^ '$Header: /cvs/stx/stx/libbasic/FloatArray.st,v 1.9 1995-11-11 15:23:20 cg Exp $'
!

documentation
"
    FloatArrays store floats (and nothing else).
    See documentation in DoubleArray for more information.
"
! !