Class

special.collection

Coll

Related Doc: package collection

Permalink

abstract class Coll[A] extends AnyRef

Indexed (zero-based) collection of elements of type A

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Coll
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Coll()

    Permalink

Abstract Value Members

  1. abstract def append(other: Coll[A]): Coll[A]

    Permalink

    Puts the elements of other collection after the elements of this collection (concatenation of 2 collections)

  2. abstract def apply(i: Int): A

    Permalink

    The element at given index.

    The element at given index. Indices start at 0; xs.apply(0) is the first element of collection xs. Note the indexing syntax xs(i) is a shorthand for xs.apply(i).

    i

    the index

    returns

    the element at the given index

    Exceptions thrown

    ArrayIndexOutOfBoundsException if i < 0 or length <= i

  3. abstract def builder: CollBuilder

    Permalink
  4. abstract def exists(p: (A) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for at least one element of this collection.

    Tests whether a predicate holds for at least one element of this collection.

    p

    the predicate used to test elements.

    returns

    true if the given predicate p is satisfied by at least one element of this collection, otherwise false

  5. abstract def filter(p: (A) ⇒ Boolean): Coll[A]

    Permalink

    Selects all elements of this collection which satisfy a predicate.

    Selects all elements of this collection which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new collection consisting of all elements of this collection that satisfy the given predicate p. The order of the elements is preserved.

    Since

    2.0

  6. abstract def flatMap[B](f: (A) ⇒ Coll[B])(implicit arg0: RType[B]): Coll[B]

    Permalink

    Builds a new collection by applying a function to all elements of this collection and using the elements of the resulting collections.

    Builds a new collection by applying a function to all elements of this collection and using the elements of the resulting collections.

    Function f is constrained to be of the form x => x.someProperty, otherwise it is illegal.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new collection of type Coll[B] resulting from applying the given collection-valued function f to each element of this collection and concatenating the results.

    Since

    2.0

  7. abstract def foldLeft[B](zero: B, op: ((B, A)) ⇒ B): B

    Permalink

    Applies a binary operator to a start value and all elements of this collection, going left to right.

    Applies a binary operator to a start value and all elements of this collection, going left to right.

    B

    the result type of the binary operator.

    zero

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this collection, going left to right with the start value z on the left:

    op(...op(z, x_1), x_2, ..., x_n)

    where x_1, ..., x_n are the elements of this collection. Returns z if this collection is empty.

  8. abstract def forall(p: (A) ⇒ Boolean): Boolean

    Permalink

    Tests whether a predicate holds for all elements of this collection.

    Tests whether a predicate holds for all elements of this collection.

    p

    the predicate used to test elements.

    returns

    true if this collection is empty or the given predicate p holds for all elements of this collection, otherwise false.

  9. abstract def getOrElse(index: Int, default: A): A

    Permalink

    The element of the collection or default value.

    The element of the collection or default value. If an index is out of bounds (i < 0 || i >= length) then default value is returned.

    returns

    the element at the given index or default value if index is out or bounds

    Since

    2.0

  10. abstract def indexWhere(p: (A) ⇒ Boolean, from: Int): Int

    Permalink

    Finds index of the first element satisfying some predicate after or at some start index.

    Finds index of the first element satisfying some predicate after or at some start index.

    p

    the predicate used to test elements.

    from

    the start index

    returns

    the index >= from of the first element of this collection that satisfies the predicate p, or -1, if none exists.

    Since

    2.0

  11. abstract def indices: Coll[Int]

    Permalink

    Produces the range of all indices of this collection as a new collection containing [0 ..

    Produces the range of all indices of this collection as a new collection containing [0 .. length-1] values.

    Since

    2.0

  12. abstract def isDefinedAt(idx: Int): Boolean

    Permalink

    Tests whether this collection contains given index.

    Tests whether this collection contains given index.

    The implementations of methods apply and isDefinedAt turn a Coll[A] into a PartialFunction[Int, A].

    idx

    the index to test

    returns

    true if this collection contains an element at position idx, false otherwise.

  13. abstract def isEmpty: Boolean

    Permalink

    Tests whether the collection is empty.

    Tests whether the collection is empty.

    returns

    true if the collection contains no elements, false otherwise.

  14. abstract def lastIndexWhere(p: (A) ⇒ Boolean, end: Int): Int

    Permalink

    Finds index of last element satisfying some predicate before or at given end index.

    Finds index of last element satisfying some predicate before or at given end index.

    p

    the predicate used to test elements.

    returns

    the index <= end of the last element of this collection that satisfies the predicate p, or -1, if none exists.

    Since

    2.0

  15. abstract def length: Int

    Permalink

    The length of the collection.

  16. abstract def map[B](f: (A) ⇒ B)(implicit arg0: RType[B]): Coll[B]

    Permalink

    Builds a new collection by applying a function to all elements of this collection.

    Builds a new collection by applying a function to all elements of this collection.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new collection of type Coll[B] resulting from applying the given function f to each element of this collection and collecting the results.

  17. abstract def nonEmpty: Boolean

    Permalink

    Tests whether the collection is not empty.

    Tests whether the collection is not empty.

    returns

    true if the collection contains at least one element, false otherwise.

  18. abstract def patch(from: Int, patch: Coll[A], replaced: Int): Coll[A]

    Permalink

    Produces a new collection where a slice of elements in this collection is replaced by another sequence.

    Produces a new collection where a slice of elements in this collection is replaced by another sequence.

    from

    the index of the first replaced element

    patch

    the replacement sequence

    replaced

    the number of elements to drop in the original collection

    returns

    a new collection consisting of all elements of this collection except that replaced elements starting from from are replaced by patch.

    Since

    2.0

  19. abstract def reverse: Coll[A]

    Permalink

    Returns new collection with elements in reversed order.

    Returns new collection with elements in reversed order.

    returns

    A new collection with all elements of this collection in reversed order.

  20. abstract def segmentLength(p: (A) ⇒ Boolean, from: Int): Int

    Permalink

    Computes length of longest segment whose elements all satisfy some predicate.

    Computes length of longest segment whose elements all satisfy some predicate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this collection starting from index from such that every element of the segment satisfies the predicate p.

    Since

    2.0

  21. abstract def slice(from: Int, until: Int): Coll[A]

    Permalink

    Selects an interval of elements.

    Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    from

    the lowest index to include from this collection.

    until

    the lowest index to EXCLUDE from this collection.

  22. implicit abstract def tItem: RType[A]

    Permalink
  23. abstract def take(n: Int): Coll[A]

    Permalink

    Selects first n elements.

    Selects first n elements.

    n

    the number of elements to take from this collection.

    returns

    a collection consisting only of the first n elements of this collection, or else the whole collection, if it has less than n elements. If n is negative, returns an empty collection.

  24. abstract def toArray: Array[A]

    Permalink
  25. abstract def unionSet(that: Coll[A]): Coll[A]

    Permalink

    Produces a new collection which contains all distinct elements of this collection and also all elements of a given collection that are not in this collection.

    Produces a new collection which contains all distinct elements of this collection and also all elements of a given collection that are not in this collection. This is order preserving operation considering only first occurrences of each distinct elements. Any collection xs can be transformed to a sequence with distinct elements by using xs.unionSet(Col()).

    NOTE: Use append if you don't need set semantics.

    that

    the collection to add.

    Since

    2.0

  26. abstract def updateMany(indexes: Coll[Int], values: Coll[A]): Coll[A]

    Permalink

    Returns a copy of this collection where elements at indexes are replaced with values.

    Returns a copy of this collection where elements at indexes are replaced with values.

    Since

    2.0

  27. abstract def updated(index: Int, elem: A): Coll[A]

    Permalink

    A copy of this collection with one single replaced element.

    A copy of this collection with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a new collection which is a copy of this collection with the element at position index replaced by elem.

    Since

    2.0

    Exceptions thrown

    IndexOutOfBoundsException if index does not satisfy 0 <= index < length.

  28. abstract def zip[B](ys: Coll[B]): Coll[(A, B)]

    Permalink

    For this collection (x0, ..., xN) and other collection (y0, ..., yM) produces a collection ((x0, y0), ..., (xK, yK)) where K = min(N, M)

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def diff(that: Coll[A]): Coll[A]

    Permalink

    Computes the multiset difference between this collection and another sequence.

    Computes the multiset difference between this collection and another sequence.

    that

    the sequence of elements to remove

    returns

    a new collection which contains all elements of this collection except some of occurrences of elements that also appear in that. If an element value x appears n times in that, then the first n occurrences of x will not form part of the result, but any following occurrences will.

    Since

    2.0

  7. def distinct: Coll[A]

    Permalink

    Builds a new collection from this collection without any duplicate elements.

    Builds a new collection from this collection without any duplicate elements.

    returns

    A new collection which contains the first occurrence of every element of this collection.

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def find(p: (A) ⇒ Boolean): Option[A]

    Permalink

    Finds the first element of the collection satisfying a predicate, if any.

    Finds the first element of the collection satisfying a predicate, if any.

    p

    the predicate used to test elements.

    returns

    an option value containing the first element in the collection that satisfies p, or None if none exists.

    Since

    2.0

  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def indexOf(elem: A, from: Int): Int

    Permalink

    Finds index of first occurrence of some value in this collection after or at some start index.

    Finds index of first occurrence of some value in this collection after or at some start index.

    elem

    the element value to search for.

    from

    the start index

    returns

    the index >= from of the first element of this collection that is equal (as determined by ==) to elem, or -1, if none exists.

    Since

    2.0

  15. def intersect(that: Coll[A]): Coll[A]

    Permalink

    Computes the multiset intersection between this collection and another sequence.

    Computes the multiset intersection between this collection and another sequence.

    that

    the sequence of elements to intersect with.

    returns

    a new collection which contains all elements of this collection which also appear in that. If an element value x appears n times in that, then the first n occurrences of x will be retained in the result, but any following occurrences will be omitted.

    Since

    2.0

  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def isValidIndex(i: Int): Boolean

    Permalink

    Returns true if the index in the valid range.

    Returns true if the index in the valid range.

    i

    index of an element of this collection

  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def size: Int

    Permalink

    The size of the collection in elements.

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    Coll → AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped