implicit class PartialOrdOps[A] extends AnyRef
Provides infix syntax for comparing two values with a total ordering.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PartialOrdOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PartialOrdOps(l: A)
Value Members
- def <[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean
Returns whether this value is less than the specified value.
- def <=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean
Returns whether this value is less than or equal to the specified value.
- def =??=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): PartialOrdering
Returns the result of comparing this value with the specified value.
- def >[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean
Returns whether this value is greater than the specified value.
- def >=[A1 >: A](r: A1)(implicit ord: PartialOrd[A1]): Boolean
Returns whether this value is greater than or equal to the specified value.
- val l: A