From f83d8977544ec7fc3eed59e032e3705f30290c00 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Tue, 9 Dec 2008 17:40:50 +0000 Subject: updates to scalax collections and standard libr... updates to scalax collections and standard library classes. --- src/library/scalax/collection/Vector.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/library/scalax/collection/Vector.scala') diff --git a/src/library/scalax/collection/Vector.scala b/src/library/scalax/collection/Vector.scala index 8787d7fd42..4e5df7e59d 100755 --- a/src/library/scalax/collection/Vector.scala +++ b/src/library/scalax/collection/Vector.scala @@ -11,11 +11,12 @@ package scalax.collection import generic._ +import mutable.ArrayBuffer trait Vector[+A] extends Sequence[A] with covariant.VectorTemplate[Vector, A] object Vector extends covariant.SequenceFactory[Vector] { /** The empty sequence */ - val empty : Vector[Nothing] = null // !!! + val empty : Vector[Nothing] = null // !!! todo: insert good immutable vector implementation here. } -- cgit v1.2.3