scala.math.Numeric

DoubleIsFractional

implicit object DoubleIsFractional extends DoubleIsFractional with DoubleOrdering

Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DoubleIsFractional
  2. DoubleOrdering
  3. DoubleIsFractional
  4. Fractional
  5. DoubleIsConflicted
  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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def abs(x: Double): Double

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

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def compare(x: Double, y: Double): 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
    DoubleOrderingOrdering → Comparator
  10. def div(x: Double, y: Double): Double

    Definition Classes
    DoubleIsFractionalFractional
  11. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  13. def equiv(x: Double, y: Double): Boolean

    Return true if x == y in the ordering.

    Return true if x == y in the ordering.

    Definition Classes
    DoubleOrderingOrderingPartialOrderingEquiv
  14. def finalize(): Unit

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

    Definition Classes
    DoubleIsConflictedNumeric
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def gt(x: Double, y: Double): Boolean

    Return true if x > y in the ordering.

    Return true if x > y in the ordering.

    Definition Classes
    DoubleOrderingOrderingPartialOrdering
  18. def gteq(x: Double, y: Double): Boolean

    Return true if x >= y in the ordering.

    Return true if x >= y in the ordering.

    Definition Classes
    DoubleOrderingOrderingPartialOrdering
  19. def hashCode(): Int

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

    Definition Classes
    Any
  21. def lt(x: Double, y: Double): Boolean

    Return true if x < y in the ordering.

    Return true if x < y in the ordering.

    Definition Classes
    DoubleOrderingOrderingPartialOrdering
  22. def lteq(x: Double, y: Double): Boolean

    Return true if x <= y in the ordering.

    Return true if x <= y in the ordering.

    Definition Classes
    DoubleOrderingOrderingPartialOrdering
  23. def max(x: Double, y: Double): Double

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

    Definition Classes
    DoubleOrderingOrdering
  24. def min(x: Double, y: Double): Double

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    DoubleOrderingOrdering
  25. def minus(x: Double, y: Double): Double

    Definition Classes
    DoubleIsConflictedNumeric
  26. implicit def mkNumericOps(lhs: Double): FractionalOps

    Definition Classes
    FractionalNumeric
  27. implicit def mkOrderingOps(lhs: Double): DoubleIsFractional.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. def negate(x: Double): Double

    Definition Classes
    DoubleIsConflictedNumeric
  30. final def notify(): Unit

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

    Definition Classes
    AnyRef
  32. def on[U](f: (U) ⇒ Double): 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
  33. def one: Double

    Definition Classes
    Numeric
  34. def plus(x: Double, y: Double): Double

    Definition Classes
    DoubleIsConflictedNumeric
  35. def reverse: Ordering[Double]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    DoubleOrderingOrderingPartialOrdering
  36. def signum(x: Double): Int

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

    Definition Classes
    AnyRef
  38. def times(x: Double, y: Double): Double

    Definition Classes
    DoubleIsConflictedNumeric
  39. def toDouble(x: Double): Double

    Definition Classes
    DoubleIsConflictedNumeric
  40. def toFloat(x: Double): Float

    Definition Classes
    DoubleIsConflictedNumeric
  41. def toInt(x: Double): Int

    Definition Classes
    DoubleIsConflictedNumeric
  42. def toLong(x: Double): Long

    Definition Classes
    DoubleIsConflictedNumeric
  43. def toString(): String

    Definition Classes
    AnyRef → Any
  44. def tryCompare(x: Double, y: Double): 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
  45. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def zero: Double

    Definition Classes
    Numeric

Inherited from DoubleOrdering

Inherited from DoubleIsFractional

Inherited from Fractional[Double]

Inherited from DoubleIsConflicted

Inherited from Numeric[Double]

Inherited from Ordering[Double]

Inherited from PartialOrdering[Double]

Inherited from Equiv[Double]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Comparator[Double]

Inherited from AnyRef

Inherited from Any

Ungrouped