Packages

class Mutable[V] extends Agg[V]

Linear Supertypes
Agg[V], IterableOnce[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mutable
  2. Agg
  3. IterableOnce
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Mutable()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[T >: V](other: IterableOnce[T]): Agg[T]
    Definition Classes
    MutableAgg
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def append(v: V): AnyVal
  6. def appendAll(vs: Seq[V]): Unit
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def collect[T](f: PartialFunction[V, T]): Agg[T]
    Definition Classes
    MutableAgg
  10. def contains(v: V): Boolean
    Definition Classes
    MutableAgg
  11. def copyToArray[B >: V](xs: Array[B], start: Int, len: Int): Unit
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(other: Any): Boolean
    Definition Classes
    Mutable → AnyRef → Any
  14. def exists(p: (V) => Boolean): Boolean
  15. def filter(f: (V) => Boolean): Agg[V]
    Definition Classes
    MutableAgg
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def find(p: (V) => Boolean): Option[V]
  18. def flatMap[T](f: (V) => IterableOnce[T]): Agg[T]
    Definition Classes
    MutableAgg
  19. def forall(p: (V) => Boolean): Boolean
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hasDefiniteSize: Boolean
  22. def hashCode(): Int
    Definition Classes
    Mutable → AnyRef → Any
  23. def indexed: IndexedSeq[V]
    Definition Classes
    MutableAgg
  24. def isEmpty: Boolean
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def isTraversableAgain: Boolean
  27. def items: Iterator[V]
    Definition Classes
    MutableAgg
  28. def iterator: Iterator[V]
    Definition Classes
    Mutable → IterableOnce
  29. def knownSize: Int
    Definition Classes
    IterableOnce
  30. def length: Int
    Definition Classes
    MutableAgg
  31. def map[T](f: (V) => T): Agg[T]
    Definition Classes
    MutableAgg
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. def reverse: Agg[V]
    Definition Classes
    MutableAgg
  36. def seq: IterableOnce[V]
  37. def set: Set[V]
  38. def stepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Definition Classes
    IterableOnce
  39. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    Mutable → AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  44. def withFilter(f: (V) => Boolean): Agg[V]
    Definition Classes
    MutableAgg
  45. def zip[T](other: Agg[T]): Agg[(V, T)]
    Definition Classes
    MutableAgg
  46. def zipWithIndex: Agg[(V, Int)]
    Definition Classes
    MutableAgg

Deprecated Value Members

  1. def foreach[U](f: (V) => U): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version mill after 0.9.6) Use .iterator.foreach(...) instead

  2. def toIterator: Iterator[V]
    Annotations
    @deprecated
    Deprecated

    (Since version mill after 0.9.6) Use .iterator instead

  3. def toStream: Stream[V]
    Annotations
    @deprecated
    Deprecated

    (Since version mill after 0.9.6) Use .to(LazyList) instead

  4. def toTraversable: Iterable[V]
    Annotations
    @deprecated
    Deprecated

    (Since version mill after 0.9.6) Use .iterator instead

Inherited from Agg[V]

Inherited from IterableOnce[V]

Inherited from AnyRef

Inherited from Any

Ungrouped