WithFilter

class WithFilter[A](p: A => Boolean, xs: Array[A])

A lazy filtered array.

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

class Object
trait Matchable
class Any

Value members

Concrete methods

def flatMap[B](f: A => IterableOnce[B])(`evidence$30`: 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.

Type Params
B

the element type of the returned array.

Value Params
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.

def flatMap[BS, B](f: A => BS)(asIterable: BS => Iterable[B], m: ClassTag[B]): Array[B]
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.

def map[B](f: A => B)(`evidence$29`: 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.

Type Params
B

the element type of the returned array.

Value Params
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.

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

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