scala.math.Numeric

BigDecimalIsFractional

implicit object BigDecimalIsFractional extends BigDecimalIsFractional with BigDecimalOrdering

Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
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
Learn more about member selection
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. final def !=(arg0: Any): Boolean

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

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def abs(x: BigDecimal): BigDecimal

    Definition Classes
    Numeric
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. 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
  8. def div(x: BigDecimal, y: BigDecimal): BigDecimal

    Definition Classes
    BigDecimalIsFractionalFractional
  9. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  11. 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
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromInt(x: Int): BigDecimal

    Definition Classes
    BigDecimalIsConflictedNumeric
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. 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
  16. 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
  17. def hashCode(): Int

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

    Definition Classes
    Any
  19. 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
  20. 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
  21. def max(x: BigDecimal, y: BigDecimal): BigDecimal

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

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

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    Ordering
  23. def minus(x: BigDecimal, y: BigDecimal): BigDecimal

    Definition Classes
    BigDecimalIsConflictedNumeric
  24. implicit def mkNumericOps(lhs: BigDecimal): FractionalOps

    Definition Classes
    FractionalNumeric
  25. 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
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. def negate(x: BigDecimal): BigDecimal

    Definition Classes
    BigDecimalIsConflictedNumeric
  28. final def notify(): Unit

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

    Definition Classes
    AnyRef
  30. 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
  31. def one: BigDecimal

    Definition Classes
    Numeric
  32. def plus(x: BigDecimal, y: BigDecimal): BigDecimal

    Definition Classes
    BigDecimalIsConflictedNumeric
  33. def reverse: Ordering[BigDecimal]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  34. def signum(x: BigDecimal): Int

    Definition Classes
    Numeric
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def times(x: BigDecimal, y: BigDecimal): BigDecimal

    Definition Classes
    BigDecimalIsConflictedNumeric
  37. def toDouble(x: BigDecimal): Double

    Definition Classes
    BigDecimalIsConflictedNumeric
  38. def toFloat(x: BigDecimal): Float

    Definition Classes
    BigDecimalIsConflictedNumeric
  39. def toInt(x: BigDecimal): Int

    Definition Classes
    BigDecimalIsConflictedNumeric
  40. def toLong(x: BigDecimal): Long

    Definition Classes
    BigDecimalIsConflictedNumeric
  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. 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
  43. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def zero: BigDecimal

    Definition Classes
    Numeric

Inherited from BigDecimalOrdering

Inherited from BigDecimalIsFractional

Inherited from Fractional[BigDecimal]

Inherited from BigDecimalIsConflicted

Inherited from Numeric[BigDecimal]

Inherited from Ordering[BigDecimal]

Inherited from PartialOrdering[BigDecimal]

Inherited from Equiv[BigDecimal]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Comparator[BigDecimal]

Inherited from AnyRef

Inherited from Any

Ungrouped