Packages

implicit object BigDecimalIsFractional extends BigDecimalIsFractional with BigDecimalOrdering

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigDecimalIsFractional
  2. BigDecimalOrdering
  3. BigDecimalIsFractional
  4. Fractional
  5. BigDecimalIsConflicted
  6. Numeric
  7. Ordering
  8. PartialOrdering
  9. Equiv
  10. Serializable
  11. Serializable
  12. Comparator
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class FractionalOps extends Ops
    Definition Classes
    Fractional
  2. class Ops extends AnyRef
    Definition Classes
    Numeric

Value Members

  1. def abs(x: BigDecimal): BigDecimal
    Definition Classes
    Numeric
  2. def compare(x: BigDecimal, y: BigDecimal): 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
    BigDecimalOrderingOrdering → Comparator
  3. def div(x: BigDecimal, y: BigDecimal): BigDecimal
    Definition Classes
    BigDecimalIsFractionalFractional
  4. def equiv(x: BigDecimal, y: BigDecimal): Boolean

    Return true if x == y in the ordering.

    Return true if x == y in the ordering.

    Definition Classes
    OrderingPartialOrderingEquiv
  5. def fromInt(x: Int): BigDecimal
    Definition Classes
    BigDecimalIsConflictedNumeric
  6. def gt(x: BigDecimal, y: BigDecimal): Boolean

    Return true if x > y in the ordering.

    Return true if x > y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  7. def gteq(x: BigDecimal, y: BigDecimal): Boolean

    Return true if x >= y in the ordering.

    Return true if x >= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  8. def lt(x: BigDecimal, y: BigDecimal): Boolean

    Return true if x < y in the ordering.

    Return true if x < y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  9. def lteq(x: BigDecimal, y: BigDecimal): Boolean

    Return true if x <= y in the ordering.

    Return true if x <= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  10. def max(x: BigDecimal, y: BigDecimal): BigDecimal

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

    Definition Classes
    Ordering
  11. def min(x: BigDecimal, y: BigDecimal): BigDecimal

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    Ordering
  12. def minus(x: BigDecimal, y: BigDecimal): BigDecimal
    Definition Classes
    BigDecimalIsConflictedNumeric
  13. implicit def mkNumericOps(lhs: BigDecimal): FractionalOps
    Definition Classes
    FractionalNumeric
  14. implicit def mkOrderingOps(lhs: BigDecimal): BigDecimalIsFractional.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
  15. def negate(x: BigDecimal): BigDecimal
    Definition Classes
    BigDecimalIsConflictedNumeric
  16. def on[U](f: (U) ⇒ BigDecimal): 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
  17. def one: BigDecimal
    Definition Classes
    Numeric
  18. def plus(x: BigDecimal, y: BigDecimal): BigDecimal
    Definition Classes
    BigDecimalIsConflictedNumeric
  19. def reverse: Ordering[BigDecimal]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  20. def reversed(): Comparator[BigDecimal]
    Definition Classes
    Comparator
  21. def signum(x: BigDecimal): Int
    Definition Classes
    Numeric
  22. def thenComparing[U <: Comparable[_ >: U]](arg0: java.util.function.Function[_ >: BigDecimal, _ <: U]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  23. def thenComparing[U](arg0: java.util.function.Function[_ >: BigDecimal, _ <: U], arg1: Comparator[_ >: U]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  24. def thenComparing(arg0: Comparator[_ >: BigDecimal]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  25. def thenComparingDouble(arg0: ToDoubleFunction[_ >: BigDecimal]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  26. def thenComparingInt(arg0: ToIntFunction[_ >: BigDecimal]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  27. def thenComparingLong(arg0: ToLongFunction[_ >: BigDecimal]): Comparator[BigDecimal]
    Definition Classes
    Comparator
  28. def times(x: BigDecimal, y: BigDecimal): BigDecimal
    Definition Classes
    BigDecimalIsConflictedNumeric
  29. def toDouble(x: BigDecimal): Double
    Definition Classes
    BigDecimalIsConflictedNumeric
  30. def toFloat(x: BigDecimal): Float
    Definition Classes
    BigDecimalIsConflictedNumeric
  31. def toInt(x: BigDecimal): Int
    Definition Classes
    BigDecimalIsConflictedNumeric
  32. def toLong(x: BigDecimal): Long
    Definition Classes
    BigDecimalIsConflictedNumeric
  33. def tryCompare(x: BigDecimal, y: BigDecimal): 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
  34. def zero: BigDecimal
    Definition Classes
    Numeric