Packages

case class Big extends Size with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Size, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Big
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Size
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *(rhs: Size): Size
    Definition Classes
    Size
  4. def +(rhs: Size): Size
    Definition Classes
    Size
  5. def <(rhs: Size): Boolean
    Definition Classes
    Size
  6. def <=(rhs: Size): Boolean
    Definition Classes
    Size
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def >(rhs: Size): Boolean
    Definition Classes
    Size
  9. def >=(rhs: Size): Boolean
    Definition Classes
    Size
  10. def approxString: String

    Show approximate as well as actual size as a string.

    Show approximate as well as actual size as a string.

    For unbounded or small sizes, this method is identical to toString.

    For finite sizes a million or larger, this method will return scientific notation to approximate the number followed by the full decimal representation in parenthesis.

    Size(0).approxString // 0 Size(123456).approxString // 123456 Size(1234567).approxString // 1.23 x 106 (1234567) Size(1234567).pow(3).approxString // 1.88 x 1018 (1881672302290562263) Size.Unbounded.approxString // ∞

    Definition Classes
    Size
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. def compare(rhs: Size): Int
    Definition Classes
    Size
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def isFinite: Boolean
    Definition Classes
    Size
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def max(rhs: Size): Size
    Definition Classes
    Size
  20. def min(rhs: Size): Size
    Definition Classes
    Size
  21. val n: BigInt
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def pow(k: Int): Size
    Definition Classes
    Size
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    Size → AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Size

Inherited from AnyRef

Inherited from Any

Ungrouped