Packages

sealed abstract class Base[In] extends AnyRef

Base functionality for filters on values of type In that need access to build data.

Self Type
Base[In]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Base
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def &&(other: Base[In]): Base[In]

    Constructs a filter that selects values that match this filter and other.

  2. def --(other: Base[In]): Base[In]

    Constructs a filter that selects values that match this filter but not other.

  3. def unary_-: Base[In]

    Constructs a filter that selects values that do not match this filter.

  4. def ||(other: Base[In]): Base[In]

    Constructs a filter that selects values that match this filter or other.