scala.math.Numeric

BigDecimalIsConflicted

trait BigDecimalIsConflicted extends Numeric[BigDecimal]

Source
Numeric.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BigDecimalIsConflicted
  2. Numeric
  3. Ordering
  4. PartialOrdering
  5. Equiv
  6. Serializable
  7. Serializable
  8. Comparator
  9. AnyRef
  10. 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

    Definition Classes
    Numeric

Abstract Value Members

  1. abstract 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
    Ordering → Comparator

Concrete 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 BigDecimalIsConflicted to any2stringadd[BigDecimalIsConflicted] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BigDecimalIsConflicted, B)

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

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

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

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def ensuring(cond: (BigDecimalIsConflicted) ⇒ Boolean, msg: ⇒ Any): BigDecimalIsConflicted

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

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

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

    Implicit information
    This member is added by an implicit conversion from BigDecimalIsConflicted to Ensuring[BigDecimalIsConflicted] 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: BigDecimal, y: BigDecimal): 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 BigDecimalIsConflicted to StringFormat[BigDecimalIsConflicted] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. def fromInt(x: Int): BigDecimal

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

    Definition Classes
    AnyRef → Any
  20. 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
  21. 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
  22. def hashCode(): Int

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

    Definition Classes
    Any
  24. 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
  25. 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
  26. def max(x: BigDecimal, y: BigDecimal): BigDecimal

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

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

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

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

    Definition Classes
    BigDecimalIsConflictedNumeric
  29. implicit def mkNumericOps(lhs: BigDecimal): Ops

    Definition Classes
    Numeric
  30. implicit def mkOrderingOps(lhs: BigDecimal): BigDecimalIsConflicted.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
  31. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  39. def reversed(): Comparator[BigDecimal]

    Definition Classes
    Comparator
  40. def signum(x: BigDecimal): Int

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

    Definition Classes
    AnyRef
  42. def thenComparing[U <: Comparable[_ >: U]](arg0: java.util.function.Function[_ >: BigDecimal, _ <: U]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  43. def thenComparing[U](arg0: java.util.function.Function[_ >: BigDecimal, _ <: U], arg1: Comparator[_ >: U]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  44. def thenComparing(arg0: Comparator[_ >: BigDecimal]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  45. def thenComparingDouble(arg0: ToDoubleFunction[_ >: BigDecimal]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  46. def thenComparingInt(arg0: ToIntFunction[_ >: BigDecimal]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  47. def thenComparingLong(arg0: ToLongFunction[_ >: BigDecimal]): Comparator[BigDecimal]

    Definition Classes
    Comparator
  48. def times(x: BigDecimal, y: BigDecimal): BigDecimal

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

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

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

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

    Definition Classes
    BigDecimalIsConflictedNumeric
  53. def toString(): String

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

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

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

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

    Definition Classes
    Numeric
  59. def [B](y: B): (BigDecimalIsConflicted, B)

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

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

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

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

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

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

Ungrouped