spire.math

SafeLong

sealed abstract class SafeLong extends ScalaNumber with ScalaNumericConversions with Ordered[SafeLong]

Provides a type to do safe long arithmetic. This type will never overflow, but rather convert the underlying long to a BigInteger as need and back down to a Long when possible.

Self Type
SafeLong
Linear Supertypes
Ordered[SafeLong], Comparable[SafeLong], ScalaNumericConversions, ScalaNumericAnyConversions, ScalaNumber, java.lang.Number, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SafeLong
  2. Ordered
  3. Comparable
  4. ScalaNumericConversions
  5. ScalaNumericAnyConversions
  6. ScalaNumber
  7. Number
  8. Serializable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SafeLong()

Abstract Value Members

  1. abstract def %(rhs: Long): SafeLong

  2. abstract def &(rhs: Long): SafeLong

  3. abstract def *(rhs: Long): SafeLong

  4. abstract def +(rhs: Long): SafeLong

  5. abstract def -(rhs: Long): SafeLong

  6. abstract def /(rhs: Long): SafeLong

  7. abstract def /%(rhs: Long): (SafeLong, SafeLong)

  8. abstract def <<(n: Int): SafeLong

  9. abstract def >>(n: Int): SafeLong

  10. abstract def ^(rhs: Long): SafeLong

  11. abstract def abs: SafeLong

  12. abstract def bitLength: Int

  13. abstract def compare(that: SafeLong): Int

    Definition Classes
    Ordered
  14. abstract def doubleValue(): Double

    Definition Classes
    ScalaNumericAnyConversions
  15. abstract def floatValue(): Float

    Definition Classes
    ScalaNumericAnyConversions
  16. abstract def gcd(that: SafeLong): SafeLong

  17. abstract def getLong: Opt[Long]

  18. abstract def intValue(): Int

    Definition Classes
    ScalaNumericAnyConversions
  19. abstract def isOne: Boolean

  20. abstract def isValidLong: Boolean

  21. abstract def isZero: Boolean

  22. abstract def longValue(): Long

    Definition Classes
    ScalaNumericAnyConversions
  23. abstract def signum: Int

  24. abstract def toBigDecimal: BigDecimal

  25. abstract def unary_-(): SafeLong

  26. abstract def underlying(): AnyRef

    Definition Classes
    ScalaNumericConversions → ScalaNumericAnyConversions → ScalaNumber
  27. abstract def |(rhs: Long): SafeLong

Concrete 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 %(rhs: BigInt): SafeLong

  5. final def %(rhs: SafeLong): SafeLong

  6. final def &(rhs: BigInt): SafeLong

  7. final def &(rhs: SafeLong): SafeLong

  8. final def *(rhs: BigInt): SafeLong

  9. final def *(rhs: SafeLong): SafeLong

  10. final def **(k: Int): SafeLong

    Exponentiation function, e.

    Exponentiation function, e.g. x ** y

    If base ** exponent doesn't fit in a Long, the result will overflow (unlike scala.math.pow which will return +/- Infinity).

  11. final def +(rhs: BigInt): SafeLong

  12. final def +(rhs: SafeLong): SafeLong

  13. final def -(rhs: BigInt): SafeLong

  14. final def -(rhs: SafeLong): SafeLong

  15. final def /(rhs: BigInt): SafeLong

  16. final def /(rhs: SafeLong): SafeLong

  17. final def /%(rhs: BigInt): (SafeLong, SafeLong)

  18. final def /%(rhs: SafeLong): (SafeLong, SafeLong)

  19. final def /~(rhs: SafeLong): SafeLong

  20. def <(that: SafeLong): Boolean

    Definition Classes
    Ordered
  21. def <=(that: SafeLong): Boolean

    Definition Classes
    Ordered
  22. def =!=(that: SafeLong): Boolean

  23. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  25. def ===(that: SafeLong): Boolean

  26. def >(that: SafeLong): Boolean

    Definition Classes
    Ordered
  27. def >=(that: SafeLong): Boolean

    Definition Classes
    Ordered
  28. final def ^(rhs: BigInt): SafeLong

  29. final def ^(rhs: SafeLong): SafeLong

  30. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  31. def byteValue(): Byte

    Definition Classes
    Number
  32. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def compareTo(that: SafeLong): Int

    Definition Classes
    Ordered → Comparable
  34. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  36. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  37. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  38. def hashCode(): Int

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

    Definition Classes
    Any
  40. final def isProbablePrime(c: Int): Boolean

  41. def isValidByte: Boolean

    Definition Classes
    ScalaNumericAnyConversions
  42. def isValidChar: Boolean

    Definition Classes
    ScalaNumericAnyConversions
  43. def isValidInt: Boolean

    Definition Classes
    ScalaNumericAnyConversions
  44. def isValidShort: Boolean

    Definition Classes
    ScalaNumericAnyConversions
  45. final def isWhole(): Boolean

    Definition Classes
    SafeLong → ScalaNumericAnyConversions → ScalaNumber
  46. final def max(that: SafeLong): SafeLong

  47. final def min(that: SafeLong): SafeLong

  48. final def modPow(k: Int, mod: SafeLong): SafeLong

  49. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  50. final def notify(): Unit

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

    Definition Classes
    AnyRef
  52. final def pow(k: Int): SafeLong

  53. def shortValue(): Short

    Definition Classes
    Number
  54. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  55. final def toBigInt: BigInt

  56. def toByte: Byte

    Definition Classes
    SafeLong → ScalaNumericAnyConversions
  57. def toChar: Char

    Definition Classes
    ScalaNumericAnyConversions
  58. def toDouble: Double

    Definition Classes
    ScalaNumericAnyConversions
  59. def toFloat: Float

    Definition Classes
    ScalaNumericAnyConversions
  60. def toInt: Int

    Definition Classes
    SafeLong → ScalaNumericAnyConversions
  61. def toLong: Long

    Definition Classes
    ScalaNumericAnyConversions
  62. def toShort: Short

    Definition Classes
    SafeLong → ScalaNumericAnyConversions
  63. def toString(): String

    Definition Classes
    SafeLong → AnyRef → Any
  64. def unifiedPrimitiveEquals(x: Any): Boolean

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

    Attributes
    protected
    Definition Classes
    ScalaNumericAnyConversions
  66. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def |(rhs: BigInt): SafeLong

  70. final def |(rhs: SafeLong): SafeLong

Inherited from Ordered[SafeLong]

Inherited from Comparable[SafeLong]

Inherited from ScalaNumericConversions

Inherited from ScalaNumericAnyConversions

Inherited from ScalaNumber

Inherited from java.lang.Number

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped