DoubleArray.st
changeset 13825 a80eb51765c0
parent 13708 079c1e1c7594
child 16639 d9417b0b93a1
child 18011 deb0c3355881
--- a/DoubleArray.st	Fri Nov 25 16:37:50 2011 +0100
+++ b/DoubleArray.st	Fri Nov 25 16:38:12 2011 +0100
@@ -11,7 +11,7 @@
 "
 "{ Package: 'stx:libbasic' }"
 
-ArrayedCollection variableDoubleSubclass:#DoubleArray
+AbstractNumberVector variableDoubleSubclass:#DoubleArray
 	instanceVariableNames:''
 	classVariableNames:''
 	poolDictionaries:''
@@ -36,7 +36,7 @@
 
 documentation
 "
-    DoubleArrays store doubleFloats values (and nothing else).
+    DoubleArrays store doubleFloat values (and nothing else).
     They have been added to support heavy duty number crunching somewhat
     better than other smalltalks do. 
     Storing Floats & Doubles in these objects (instead of Arrays)
@@ -102,5 +102,5 @@
 !DoubleArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/DoubleArray.st,v 1.20 2011-09-15 13:11:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/DoubleArray.st,v 1.21 2011-11-25 15:38:12 cg Exp $'
 ! !