Packages

class WithFilter[A] extends AnyRef

A lazy filtered array. No filtering is applied until one of foreach, map or flatMap is called.

Source
ArrayOps.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithFilter
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WithFilter(p: (A) => Boolean, xs: Array[A])

Value Members

  1. def flatMap[BS, B](f: (A) => BS)(implicit asIterable: (BS) => Iterable[B], m: ClassTag[B]): Array[B]
  2. def flatMap[B](f: (A) => IterableOnce[B])(implicit arg0: ClassTag[B]): Array[B]

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

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

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new array resulting from applying the given collection-valued function f to each element of this array and concatenating the results.

  3. def foreach[U](f: (A) => U): Unit

    Apply f to each element for its side effects.

    Apply f to each element for its side effects. Note: [U] parameter needed to help scalac's type inference.

  4. def map[B](f: (A) => B)(implicit arg0: ClassTag[B]): Array[B]

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

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

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new array resulting from applying the given function f to each element of this array and collecting the results.

  5. def withFilter(q: (A) => Boolean): WithFilter[A]

    Creates a new non-strict filter which combines this filter with the given predicate.