/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: MutableVectorView.scala 18473 2009-08-13 08:37:19Z moors $ package scala.collection.generic import scala.collection._ import TraversableView.NoBuilder /** A non-strict projection of an iterable. * @author Sean McDirmid * @author Martin Odersky * @version 2.8 */ trait MutableVectorView[A, +Coll <: mutable.Vector[_]] extends MutableVectorViewTemplate[A, Coll, MutableVectorView[A, Coll]] object MutableVectorView { type Coll = TraversableView[_, C] forSome {type C <: Traversable[_]} implicit def builderFactory[A]: BuilderFactory[A, MutableVectorView[A, mutable.Vector[_]], Coll] = new BuilderFactory[A, MutableVectorView[A, mutable.Vector[_]], Coll] { def apply(from: Coll) = new NoBuilder } }