BigIntegerSigned

trait Eq[BigInteger]
class Object
trait Matchable
class Any

Value members

Concrete methods

override def abs(a: BigInteger): BigInteger
Definition Classes
override def signum(a: BigInteger): Int
Definition Classes

Inherited methods

Inherited from:
BigIntegerOrder

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
override def eqv(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
override def gt(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
override def gteqv(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
Inherited from:
Signed
Inherited from:
Signed
Inherited from:
Signed
Inherited from:
Signed
override def lt(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
override def lteqv(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
override def max(x: BigInteger, y: BigInteger): BigInteger
Definition Classes
Inherited from:
BigIntegerOrder
override def min(x: BigInteger, y: BigInteger): BigInteger
Definition Classes
Inherited from:
BigIntegerOrder
override def neqv(x: BigInteger, y: BigInteger): Boolean
Definition Classes
Inherited from:
BigIntegerOrder
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

Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

Returns Zero if a is 0, Positive if a is positive, and Negative is a is negative.

Inherited from:
Signed

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