org.scalactic.EquaPath.FastEquaBridge

FastWithFilter

class FastWithFilter extends WithFilter

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

Source
EquaPath.scala
Linear Supertypes
FastEquaBridge.WithFilter, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FastWithFilter
  2. WithFilter
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FastWithFilter(p: (S) ⇒ Boolean)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def flatMap(f: (S) ⇒ EquaSet): FastEquaSet

    Builds a new FastEquaSet by applying a function to all elements of the outer EquaBridge containing this FastWithFilter instance that satisfy predicate p and concatenating the results.

    Builds a new FastEquaSet by applying a function to all elements of the outer EquaBridge containing this FastWithFilter instance that satisfy predicate p and concatenating the results.

    f

    the function to apply to each element.

    returns

    a new FastEquaSet resulting from applying the given EquaSet-valued function f to each element of the outer EquaBridge that satisfies predicate p and concatenating the results.

    Definition Classes
    FastWithFilterWithFilter
  12. def foreach[U](f: (S) ⇒ U): Unit

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

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

    U

    the type parameter describing the result of function f. This result will always be ignored. Typically U is Unit, but this is not necessary.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Definition Classes
    WithFilter
  13. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def map(f: (S) ⇒ T): FastEquaSet

    Builds a new FastEquaSet by applying a function to all elements of the outer EquaBridge containing this FastWithFilter instance that satisfy predicate p.

    Builds a new FastEquaSet by applying a function to all elements of the outer EquaBridge containing this FastWithFilter instance that satisfy predicate p.

    f

    the function to apply to each element.

    returns

    a new FastEquaSet resulting from applying the given function f to each element of the outer EquaBridge that satisfies predicate p and collecting the results.

    Definition Classes
    FastWithFilterWithFilter
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. def withFilter(q: (S) ⇒ Boolean): FastWithFilter

    Further refines the filter for this EquaSet.

    Further refines the filter for this EquaSet.

    q

    the predicate used to test elements.

    returns

    an object of class FastWithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this EquaBridge which satisfy the predicate q in addition to the predicate p.

    Definition Classes
    FastWithFilterWithFilter

Inherited from FastEquaBridge.WithFilter

Inherited from AnyRef

Inherited from Any

Ungrouped