Packages

trait Agg[V] extends IterableOnce[V]

A collection with enforced uniqueness, fast contains and deterministic ordering. Raises an exception if a duplicate is found; call toSeq.distinct if you explicitly want to make it swallow duplicates

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

Abstract Value Members

  1. abstract def ++[T >: V](other: IterableOnce[T]): Agg[T]
  2. abstract def collect[T](f: PartialFunction[V, T]): Agg[T]
  3. abstract def contains(v: V): Boolean
  4. abstract def filter(f: (V) => Boolean): Agg[V]
  5. abstract def flatMap[T](f: (V) => IterableOnce[T]): Agg[T]
  6. abstract def indexed: IndexedSeq[V]
  7. abstract def items: Iterator[V]
  8. abstract def iterator: Iterator[V]
    Definition Classes
    IterableOnce
  9. abstract def length: Int
  10. abstract def map[T](f: (V) => T): Agg[T]
  11. abstract def reverse: Agg[V]
  12. abstract def withFilter(f: (V) => Boolean): Agg[V]
  13. abstract def zip[T](other: Agg[T]): Agg[(V, T)]
  14. abstract def zipWithIndex: Agg[(V, Int)]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def knownSize: Int
    Definition Classes
    IterableOnce
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def stepper[S <: Stepper[_]](implicit shape: StepperShape[V, S]): S
    Definition Classes
    IterableOnce
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from IterableOnce[V]

Inherited from AnyRef

Inherited from Any

Ungrouped