scala.math.Ordering

BigIntOrdering

trait BigIntOrdering extends Ordering[BigInt]

Linear Supertypes
Ordering[BigInt], PartialOrdering[BigInt], Equiv[BigInt], Serializable, java.io.Serializable, Comparator[BigInt], AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BigIntOrdering
  2. Ordering
  3. PartialOrdering
  4. Equiv
  5. Serializable
  6. Serializable
  7. Comparator
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Ops extends AnyRef

    This inner class defines comparison operators available for T.

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to any2stringadd[BigIntOrdering] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BigIntOrdering, B)

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to ArrowAssoc[BigIntOrdering] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compare(x: BigInt, y: BigInt): Int

    Returns an integer whose sign communicates how x compares to y.

    Returns an integer whose sign communicates how x compares to y.

    The result sign has the following meaning:

    • negative if x < y
    • positive if x > y
    • zero otherwise (if x == y)
    Definition Classes
    BigIntOrderingOrdering → Comparator
  9. def ensuring(cond: (BigIntOrdering) ⇒ Boolean, msg: ⇒ Any): BigIntOrdering

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to Ensuring[BigIntOrdering] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (BigIntOrdering) ⇒ Boolean): BigIntOrdering

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to Ensuring[BigIntOrdering] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): BigIntOrdering

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to Ensuring[BigIntOrdering] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): BigIntOrdering

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to Ensuring[BigIntOrdering] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def equiv(x: BigInt, y: BigInt): Boolean

    Return true if x == y in the ordering.

    Return true if x == y in the ordering.

    Definition Classes
    OrderingPartialOrderingEquiv
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to StringFormat[BigIntOrdering] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def gt(x: BigInt, y: BigInt): Boolean

    Return true if x > y in the ordering.

    Return true if x > y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  20. def gteq(x: BigInt, y: BigInt): Boolean

    Return true if x >= y in the ordering.

    Return true if x >= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def lt(x: BigInt, y: BigInt): Boolean

    Return true if x < y in the ordering.

    Return true if x < y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  24. def lteq(x: BigInt, y: BigInt): Boolean

    Return true if x <= y in the ordering.

    Return true if x <= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  25. def max(x: BigInt, y: BigInt): BigInt

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

    Definition Classes
    Ordering
  26. def min(x: BigInt, y: BigInt): BigInt

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    Ordering
  27. implicit def mkOrderingOps(lhs: BigInt): Ops

    This implicit method augments T with the comparison operators defined in scala.math.Ordering.Ops.

    This implicit method augments T with the comparison operators defined in scala.math.Ordering.Ops.

    Definition Classes
    Ordering
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def on[U](f: (U) ⇒ BigInt): Ordering[U]

    Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:

    Given f, a function from U into T, creates an Ordering[U] whose compare function is equivalent to:

    def compare(x:U, y:U) = Ordering[T].compare(f(x), f(y))
    Definition Classes
    Ordering
  32. def reverse: Ordering[BigInt]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    AnyRef → Any
  35. def tryCompare(x: BigInt, y: BigInt): Some[Int]

    Returns whether a comparison between x and y is defined, and if so the result of compare(x, y).

    Returns whether a comparison between x and y is defined, and if so the result of compare(x, y).

    Definition Classes
    OrderingPartialOrdering
  36. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (BigIntOrdering, B)

    Implicit information
    This member is added by an implicit conversion from BigIntOrdering to ArrowAssoc[BigIntOrdering] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Ordering[BigInt]

Inherited from PartialOrdering[BigInt]

Inherited from Equiv[BigInt]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Comparator[BigInt]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BigIntOrdering to any2stringadd[BigIntOrdering]

Inherited by implicit conversion StringFormat from BigIntOrdering to StringFormat[BigIntOrdering]

Inherited by implicit conversion Ensuring from BigIntOrdering to Ensuring[BigIntOrdering]

Inherited by implicit conversion ArrowAssoc from BigIntOrdering to ArrowAssoc[BigIntOrdering]

Ungrouped