summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/collection/immutable/Vector.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/library/scala/collection/immutable/Vector.scala b/src/library/scala/collection/immutable/Vector.scala
index 9c86f4ff4d..e2ccc96430 100644
--- a/src/library/scala/collection/immutable/Vector.scala
+++ b/src/library/scala/collection/immutable/Vector.scala
@@ -11,6 +11,11 @@
// Work in progress for a new immutable vector implementation.
// This code is still preliminary, so expect things to change somewhat.
+// Questions: how to call update, appendFront, appendBack?
+// how to make them available? trait Vector? VectorLike? have another companion object VectorImpl?
+// mix in LinearSeq?
+
+
package scala.collection
package immutable