class Mutable[V] extends Agg[V]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Mutable
- Agg
- IterableOnce
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Mutable()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++[T >: V](other: IterableOnce[T]): Agg[T]
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def append(v: V): AnyVal
- def appendAll(vs: Seq[V]): Unit
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collect[T](f: PartialFunction[V, T]): Agg[T]
- def contains(v: V): Boolean
- def copyToArray[B >: V](xs: Array[B], start: Int, len: Int): Unit
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(other: Any): Boolean
- Definition Classes
- Mutable → AnyRef → Any
- def exists(p: (V) => Boolean): Boolean
- def filter(f: (V) => Boolean): Agg[V]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def find(p: (V) => Boolean): Option[V]
- def flatMap[T](f: (V) => IterableOnce[T]): Agg[T]
- def forall(p: (V) => Boolean): Boolean
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hasDefiniteSize: Boolean
- def hashCode(): Int
- Definition Classes
- Mutable → AnyRef → Any
- def indexed: IndexedSeq[V]
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isTraversableAgain: Boolean
- def items: Iterator[V]
- def iterator: Iterator[V]
- Definition Classes
- Mutable → IterableOnce
- def knownSize: Int
- Definition Classes
- IterableOnce
- def length: Int
- def map[T](f: (V) => T): Agg[T]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def reverse: Agg[V]
- def seq: IterableOnce[V]
- def set: Set[V]
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
- Definition Classes
- IterableOnce
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Mutable → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withFilter(f: (V) => Boolean): Agg[V]
- def zip[T](other: Agg[T]): Agg[(V, T)]
- def zipWithIndex: Agg[(V, Int)]
Deprecated Value Members
- def foreach[U](f: (V) => U): Unit
- Annotations
- @deprecated
- Deprecated
(Since version mill after 0.9.6) Use .iterator.foreach(...) instead
- def toIterator: Iterator[V]
- Annotations
- @deprecated
- Deprecated
(Since version mill after 0.9.6) Use .iterator instead
- def toStream: Stream[V]
- Annotations
- @deprecated
- Deprecated
(Since version mill after 0.9.6) Use .to(LazyList) instead
- def toTraversable: Iterable[V]
- Annotations
- @deprecated
- Deprecated
(Since version mill after 0.9.6) Use .iterator instead