AbstractNumberVector.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 01:30:00 +0000
branchjv
changeset 18011 deb0c3355881
parent 17928 8e8dad2e6269
parent 14026 d72d69757a61
child 18120 e3a375d5f6a8
permissions -rw-r--r--
Merged branch 'default' (CVS HEAD)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13824
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2011 by Claus Gittinger
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
14026
d72d69757a61 class definition
Claus Gittinger <cg@exept.de>
parents: 13824
diff changeset
    14
UninterpretedBytes subclass:#AbstractNumberVector
13824
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Collections-Arrayed'
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!AbstractNumberVector class methodsFor:'documentation'!
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2011 by Claus Gittinger
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    abstract superclass for all direct storing number vector classes
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    (float, double, integer arrays)
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    Mostly to share double dispatch code.
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
! !
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
!AbstractNumberVector class methodsFor:'documentation'!
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
version
14026
d72d69757a61 class definition
Claus Gittinger <cg@exept.de>
parents: 13824
diff changeset
    49
    ^ '$Header: /cvs/stx/stx/libbasic/AbstractNumberVector.st,v 1.2 2012-02-27 20:54:03 cg Exp $'
13824
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
version_CVS
14026
d72d69757a61 class definition
Claus Gittinger <cg@exept.de>
parents: 13824
diff changeset
    53
    ^ '$Header: /cvs/stx/stx/libbasic/AbstractNumberVector.st,v 1.2 2012-02-27 20:54:03 cg Exp $'
13824
95e857e60462 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
! !