scala.xml.Document

WithFilter

class WithFilter extends AnyRef

A class supporting filtered operations. Instances of this class are returned by method withFilter.

definition classes: TraversableLike

Inherits

  1. AnyRef
  2. Any

Value Members

  1. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  2. def flatMap[B, That](f: (A) ⇒ Traversable[B])(bf: CanBuildFrom[Repr, B, That]): That

    Builds a new collection by applying a function to all elements of the outer traversable collection containing this WithFilter instance that satisfy predicate p and concatenating the results

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

    Applies a function f to all elements of the outer traversable collection containing this WithFilter instance that satisfy predicate p

  4. def hashCode(): Int

    Returns a hash code value for the object

  5. def map[B, That](f: (A) ⇒ B)(bf: CanBuildFrom[Repr, B, That]): That

    Builds a new collection by applying a function to all elements of the outer traversable collection containing this WithFilter instance that satisfy predicate p

  6. def toString(): String

    Returns a string representation of the object

  7. def withFilter(q: (A) ⇒ Boolean): WithFilter

    Further refines the filter for this traversable collection

Instance constructors

  1. new WithFilter(p: (A) ⇒ Boolean)

  2. new WithFilter()