DoubleArray.st
branchjv
changeset 17900 b9614a1cf804
parent 17892 d86c8bd5ece3
child 17910 8d796ca8bd1d
--- a/DoubleArray.st	Fri Nov 25 21:46:07 2011 +0000
+++ b/DoubleArray.st	Sat Nov 26 08:36:46 2011 +0000
@@ -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,10 +102,11 @@
 !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 $'
 !
 
 version_SVN
-    ^ '$Id: DoubleArray.st 10729 2011-10-31 22:19:21Z vranyj1 $'
+    ^ '$Id: DoubleArray.st 10741 2011-11-26 08:36:46Z vranyj1 $'
 ! !
 
+