Packages

implicit class PartialOrdOps[A] extends AnyRef

Provides infix syntax for comparing two values with a total ordering.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartialOrdOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PartialOrdOps(l: A)

Value Members

  1. def <[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean

    Returns whether this value is less than the specified value.

  2. def <=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean

    Returns whether this value is less than or equal to the specified value.

  3. def =??=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): PartialOrdering

    Returns the result of comparing this value with the specified value.

  4. def >[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean

    Returns whether this value is greater than the specified value.

  5. def >=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean

    Returns whether this value is greater than or equal to the specified value.

  6. val l: A