Packages

implicit class OrdOps[A] extends AnyRef

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

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

Instance Constructors

  1. new OrdOps(l: A)

Value Members

  1. def =?=[A1 >: A](r: A1)(implicit ord: Ord[A1]): Ordering

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

  2. val l: A
  3. def max[A1 >: A](r: A1)(implicit ord: Ord[A1]): A1

    Returns the maximum of this value and the specified value.

  4. def min[A1 >: A](r: A1)(implicit ord: Ord[A1]): A1

    Returns the minimum of this value and the specified value.