BigDecimalOrder

trait Eq[BigDecimal]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def eqv(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes
override def gt(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes
override def gteqv(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes
override def lt(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes
override def lteqv(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes
override def max(x: BigDecimal, y: BigDecimal): BigDecimal
Definition Classes
override def min(x: BigDecimal, y: BigDecimal): BigDecimal
Definition Classes
override def neqv(x: BigDecimal, y: BigDecimal): Boolean
Definition Classes

Inherited methods

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Like compare, but returns a cats.kernel.Comparison instead of an Int. Has the benefit of being able to pattern match on, but not as performant.

Inherited from:
Order
Inherited from:
Order

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Like partialCompare, but returns a cats.kernel.Comparison instead of an Double. Has the benefit of being able to pattern match on, but not as performant.

Inherited from:
PartialOrder

Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

Returns Some(x) if x >= y, Some(y) if x < y, otherwise None.

Inherited from:
PartialOrder

Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

Returns Some(x) if x <= y, Some(y) if x > y, otherwise None.

Inherited from:
PartialOrder

Convert a Order[A] to a scala.math.Ordering[A] instance.

Convert a Order[A] to a scala.math.Ordering[A] instance.

Inherited from:
Order

Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:

Result of comparing x with y. Returns None if operands are not comparable. If operands are comparable, returns Some[Int] where the Int sign is:

  • negative iff x < y
  • zero iff x = y
  • positive iff x > y
Inherited from:
PartialOrder