Packages

sealed trait Expression[F, T] extends AnyRef

Value and Or form the leaf and nodes of the expression tree used by the filter. F should be a companion object type (ex: Intersects.type) and is used to restrict combination of disjunctions to a single type. T is the actual parameter value of the expression

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Expression
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def or(other: Expression[F, T]): Or[F, T]