Trait

scala.runtime

ScalaNumberProxy

Related Doc: package runtime

Permalink

trait ScalaNumberProxy[T] extends ScalaNumericAnyConversions with Typed[T] with OrderedProxy[T]

Base classes for the Rich* wrappers of the primitive types. As with all classes in scala.runtime.*, this is not a supported API.

Version

2.9

Since

2.9

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalaNumberProxy
  2. OrderedProxy
  3. Ordered
  4. Comparable
  5. Typed
  6. Proxy
  7. ScalaNumericAnyConversions
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  2. abstract def isWhole(): Boolean

    Permalink

    returns

    true if this number has no decimal component, false otherwise.

    Definition Classes
    ScalaNumericAnyConversions
  3. implicit abstract def num: Numeric[T]

    Permalink
    Attributes
    protected
  4. abstract def ord: Ordering[T]

    Permalink
    Attributes
    protected
    Definition Classes
    OrderedProxy
  5. abstract def self: T

    Permalink
    Definition Classes
    TypedProxy

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  3. def <(that: T): Boolean

    Permalink

    Returns true if this is less than that

    Returns true if this is less than that

    Definition Classes
    Ordered
  4. def <=(that: T): Boolean

    Permalink

    Returns true if this is less than or equal to that.

    Returns true if this is less than or equal to that.

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

    Permalink
    Definition Classes
    Any
  6. def >(that: T): Boolean

    Permalink

    Returns true if this is greater than that.

    Returns true if this is greater than that.

    Definition Classes
    Ordered
  7. def >=(that: T): Boolean

    Permalink

    Returns true if this is greater than or equal to that.

    Returns true if this is greater than or equal to that.

    Definition Classes
    Ordered
  8. def abs: T

    Permalink

    Returns the absolute value of this.

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def byteValue(): Byte

    Permalink
  11. def compare(y: T): Int

    Permalink

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Implement this method to determine how instances of A will be sorted.

    Returns x where:

    • x < 0 when this < that
    • x == 0 when this == that
    • x > 0 when this > that
    Definition Classes
    OrderedProxyOrdered
  12. def compareTo(that: T): Int

    Permalink

    Result of comparing this with operand that.

    Result of comparing this with operand that.

    Definition Classes
    Ordered → Comparable
  13. def doubleValue(): Double

    Permalink
  14. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    Proxy → Any
  15. def floatValue(): Float

    Permalink
  16. def hashCode(): Int

    Permalink
    Definition Classes
    Proxy → Any
  17. def intValue(): Int

    Permalink
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isValidByte: Boolean

    Permalink

    Returns true iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  20. def isValidChar: Boolean

    Permalink

    Returns true iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  21. def isValidInt: Boolean

    Permalink

    Returns true iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  22. def isValidShort: Boolean

    Permalink

    Returns true iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returns false.

    Returns true iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returns false.

    Definition Classes
    ScalaNumericAnyConversions
  23. def longValue(): Long

    Permalink
  24. def max(that: T): T

    Permalink

    Returns this if this > that or that otherwise.

  25. def min(that: T): T

    Permalink

    Returns this if this < that or that otherwise.

  26. def shortValue(): Short

    Permalink
  27. def signum: Int

    Permalink

    Returns the signum of this.

  28. def toByte: Byte

    Permalink

    Returns the value of this as a scala.Byte.

    Returns the value of this as a scala.Byte. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  29. def toChar: Char

    Permalink

    Returns the value of this as a scala.Char.

    Returns the value of this as a scala.Char. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  30. def toDouble: Double

    Permalink

    Returns the value of this as a scala.Double.

    Returns the value of this as a scala.Double. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  31. def toFloat: Float

    Permalink

    Returns the value of this as a scala.Float.

    Returns the value of this as a scala.Float. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  32. def toInt: Int

    Permalink

    Returns the value of this as an scala.Int.

    Returns the value of this as an scala.Int. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  33. def toLong: Long

    Permalink

    Returns the value of this as a scala.Long.

    Returns the value of this as a scala.Long. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  34. def toShort: Short

    Permalink

    Returns the value of this as a scala.Short.

    Returns the value of this as a scala.Short. This may involve rounding or truncation.

    Definition Classes
    ScalaNumericAnyConversions
  35. def toString(): String

    Permalink
    Definition Classes
    Proxy → Any
  36. def underlying(): AnyRef

    Permalink
  37. def unifiedPrimitiveEquals(x: Any): Boolean

    Permalink

    Should only be called after all known non-primitive types have been excluded.

    Should only be called after all known non-primitive types have been excluded. This method won't dispatch anywhere else after checking against the primitives to avoid infinite recursion between equals and this on unknown "Number" variants.

    Additionally, this should only be called if the numeric type is happy to be converted to Long, Float, and Double. If for instance a BigInt much larger than the Long range is sent here, it will claim equality with whatever Long is left in its lower 64 bits. Or a BigDecimal with more precision than Double can hold: same thing. There's no way given the interface available here to prevent this error.

    Attributes
    protected
    Definition Classes
    ScalaNumericAnyConversions
  38. def unifiedPrimitiveHashcode(): Int

    Permalink
    Attributes
    protected
    Definition Classes
    ScalaNumericAnyConversions

Inherited from OrderedProxy[T]

Inherited from math.Ordered[T]

Inherited from Comparable[T]

Inherited from Typed[T]

Inherited from Proxy

Inherited from Any

Ungrouped