scala.math.Numeric

FloatIsFractional

trait FloatIsFractional extends FloatIsConflicted with Fractional[Float]

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FloatIsFractional
  2. Fractional
  3. FloatIsConflicted
  4. Numeric
  5. Ordering
  6. PartialOrdering
  7. Equiv
  8. Serializable
  9. Serializable
  10. Comparator
  11. AnyRef
  12. 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 FractionalOps extends Ops

    Definition Classes
    Fractional
  2. class Ops extends AnyRef

    Definition Classes
    Numeric

Abstract Value Members

  1. abstract def compare(x: Float, y: Float): 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 FloatIsFractional to any2stringadd[FloatIsFractional] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FloatIsFractional, B)

    Implicit information
    This member is added by an implicit conversion from FloatIsFractional to ArrowAssoc[FloatIsFractional] 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: Float): Float

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

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def div(x: Float, y: Float): Float

    Definition Classes
    FloatIsFractionalFractional
  10. def ensuring(cond: (FloatIsFractional) ⇒ Boolean, msg: ⇒ Any): FloatIsFractional

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  16. def equiv(x: Float, y: Float): Boolean

    Return true if x == y in the ordering.

    Return true if x == y in the ordering.

    Definition Classes
    OrderingPartialOrderingEquiv
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. 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 FloatIsFractional to StringFormat[FloatIsFractional] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. def fromInt(x: Int): Float

    Definition Classes
    FloatIsConflictedNumeric
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def gt(x: Float, y: Float): Boolean

    Return true if x > y in the ordering.

    Return true if x > y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  22. def gteq(x: Float, y: Float): Boolean

    Return true if x >= y in the ordering.

    Return true if x >= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  23. def hashCode(): Int

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

    Definition Classes
    Any
  25. def lt(x: Float, y: Float): Boolean

    Return true if x < y in the ordering.

    Return true if x < y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  26. def lteq(x: Float, y: Float): Boolean

    Return true if x <= y in the ordering.

    Return true if x <= y in the ordering.

    Definition Classes
    OrderingPartialOrdering
  27. def max(x: Float, y: Float): Float

    Return x if x >= y, otherwise y.

    Return x if x >= y, otherwise y.

    Definition Classes
    Ordering
  28. def min(x: Float, y: Float): Float

    Return x if x <= y, otherwise y.

    Return x if x <= y, otherwise y.

    Definition Classes
    Ordering
  29. def minus(x: Float, y: Float): Float

    Definition Classes
    FloatIsConflictedNumeric
  30. implicit def mkNumericOps(lhs: Float): FractionalOps

    Definition Classes
    FractionalNumeric
  31. implicit def mkOrderingOps(lhs: Float): FloatIsFractional.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
  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. def negate(x: Float): Float

    Definition Classes
    FloatIsConflictedNumeric
  34. final def notify(): Unit

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

    Definition Classes
    AnyRef
  36. def on[U](f: (U) ⇒ Float): 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
  37. def one: Float

    Definition Classes
    Numeric
  38. def plus(x: Float, y: Float): Float

    Definition Classes
    FloatIsConflictedNumeric
  39. def reverse: Ordering[Float]

    Return the opposite ordering of this one.

    Return the opposite ordering of this one.

    Definition Classes
    OrderingPartialOrdering
  40. def signum(x: Float): Int

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

    Definition Classes
    AnyRef
  42. def times(x: Float, y: Float): Float

    Definition Classes
    FloatIsConflictedNumeric
  43. def toDouble(x: Float): Double

    Definition Classes
    FloatIsConflictedNumeric
  44. def toFloat(x: Float): Float

    Definition Classes
    FloatIsConflictedNumeric
  45. def toInt(x: Float): Int

    Definition Classes
    FloatIsConflictedNumeric
  46. def toLong(x: Float): Long

    Definition Classes
    FloatIsConflictedNumeric
  47. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. def zero: Float

    Definition Classes
    Numeric
  53. def [B](y: B): (FloatIsFractional, B)

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

Inherited from Fractional[Float]

Inherited from FloatIsConflicted

Inherited from Numeric[Float]

Inherited from Ordering[Float]

Inherited from PartialOrdering[Float]

Inherited from Equiv[Float]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Comparator[Float]

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped