class LargeTag[A] extends NumberTag[A]

Linear Supertypes
NumberTag[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LargeTag
  2. NumberTag
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LargeTag(resolution: Resolution, zero: A)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def finite: Boolean

    Returns true if all values representable by A are finite and live on the real number line.

    Returns true if all values representable by A are finite and live on the real number line.

    Definition Classes
    NumberTag
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  11. def hasMaxValue: Option[A]

    Returns the largest finite value that A can represent, if one exists.

    Returns the largest finite value that A can represent, if one exists. For instance, the largest finite value representable by Double is 1.7976931348623157E308. On the other hand, BigInt has no largest value.

    Definition Classes
    LargeTagNumberTag
  12. def hasMinValue: Option[A]

    Returns the smallest finite value that A can represent, if one exists.

    Returns the smallest finite value that A can represent, if one exists. For instance, the smallest finite value representable by Double is -1.7976931348623157E308. On the other hand, BigInt has no smallest value.

    Definition Classes
    LargeTagNumberTag
  13. def hasNaN: Option[A]

    If A has values that represent an undefined or invalid value, then a repsentitive value may be used here.

    If A has values that represent an undefined or invalid value, then a repsentitive value may be used here. Otherwise this returned None to indicate that all values in A are valid numbers in the extended real number line.

    Definition Classes
    LargeTagNumberTag
  14. def hasNegativeInfinity: Option[A]

    If A has a value that represents a negative infinity, then it is returned here, otherwise a value of None indicates that negative infinity cannot be represented in A.

    If A has a value that represents a negative infinity, then it is returned here, otherwise a value of None indicates that negative infinity cannot be represented in A.

    Definition Classes
    LargeTagNumberTag
  15. def hasPositiveInfinity: Option[A]

    If A has a value that represents a positive infinity, then it is returned here, otherwise a value of None indicates that positive infinity cannot be represented in A.

    If A has a value that represents a positive infinity, then it is returned here, otherwise a value of None indicates that positive infinity cannot be represented in A.

    Definition Classes
    LargeTagNumberTag
  16. val hasZero: Option[A]
    Definition Classes
    LargeTagNumberTag
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  18. def infinite: Boolean

    Returns true if this type can represent arbitrarily large or small values.

    Returns true if this type can represent arbitrarily large or small values.

    Definition Classes
    NumberTag
  19. def isFinite(a: A): Boolean

    Returns true if a represents a finite value (neither infinite nor invalid).

    Returns true if a represents a finite value (neither infinite nor invalid).

    Definition Classes
    NumberTag
  20. def isInfinite(a: A): Boolean

    Returns true if a is an infinite value (either positive or negative) and false otherwise.

    Returns true if a is an infinite value (either positive or negative) and false otherwise.

    Definition Classes
    LargeTagNumberTag
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isNaN(a: A): Boolean

    Returns true if a is an invalid number.

    Returns true if a is an invalid number. Note that positive and negative infinities are valid numbers.

    Definition Classes
    LargeTagNumberTag
  23. def isSigned: Boolean

    Returns true if A can represent both positive and negative values.

    Returns true if A can represent both positive and negative values.

    Definition Classes
    LargeTagNumberTag
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. def overflows: Boolean

    Returns true if this value can overflow as a result of arithmetic operations.

    Returns true if this value can overflow as a result of arithmetic operations. Types that overflow include Int and Long.

    Definition Classes
    LargeTagNumberTag
  28. val resolution: Resolution
    Definition Classes
    LargeTagNumberTag
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NumberTag[A]

Inherited from AnyRef

Inherited from Any

Ungrouped