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() @HotSpotIntrinsicCandidate()
  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 find(p: (V) => Boolean): Option[V]
  17. def flatMap[T](f: (V) => IterableOnce[T]): Agg[T]
    Definition Classes
    MutableAgg
  18. def forall(p: (V) => Boolean): Boolean
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def hasDefiniteSize: Boolean
  21. def hashCode(): Int
    Definition Classes
    Mutable → AnyRef → Any
  22. def indexed: IndexedSeq[V]
    Definition Classes
    MutableAgg
  23. def isEmpty: Boolean
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def isTraversableAgain: Boolean
  26. def items: Iterator[V]
    Definition Classes
    MutableAgg
  27. def iterator: Iterator[V]
    Definition Classes
    Mutable → IterableOnce
  28. def knownSize: Int
    Definition Classes
    IterableOnce
  29. def length: Int
    Definition Classes
    MutableAgg
  30. def map[T](f: (V) => T): Agg[T]
    Definition Classes
    MutableAgg
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def reverse: Agg[V]
    Definition Classes
    MutableAgg
  35. def seq: IterableOnce[V]
  36. def set: Set[V]
  37. def stepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Definition Classes
    IterableOnce
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    Mutable → AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. def withFilter(f: (V) => Boolean): Agg[V]
    Definition Classes
    MutableAgg
  44. def zip[T](other: Agg[T]): Agg[(V, T)]
    Definition Classes
    MutableAgg
  45. def zipWithIndex: Agg[(V, Int)]
    Definition Classes
    MutableAgg

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def foreach[U](f: (V) => U): Unit
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version mill after 0.9.6) Use .iterator instead

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

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

  5. 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