class BigInteger extends Number with Comparable[BigInteger]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BigInteger
- Comparable
- Number
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new BigInteger(s: String)
- new BigInteger(s: String, radix: Int)
- new BigInteger(numBits: Int, rnd: Random)
- new BigInteger(bitLength: Int, certainty: Int, rnd: Random)
- new BigInteger(signum: Int, magnitude: Array[Byte])
- new BigInteger(signum: Int, magnitude: Array[Byte], off: Int, len: Int)
- new BigInteger(byteArray: Array[Byte])
- new BigInteger(byteArray: Array[Byte], off: Int, len: Int)
- new BigInteger()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def abs(): BigInteger
- def add(bi: BigInteger): BigInteger
- def and(bi: BigInteger): BigInteger
- def andNot(bi: BigInteger): BigInteger
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bitCount(): Int
- def bitLength(): Int
- def byteValue(): Byte
- Definition Classes
- Number
- def byteValueExact(): Byte
- def clearBit(n: Int): BigInteger
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compareTo(bi: BigInteger): Int
- Definition Classes
- BigInteger → Comparable
- def divide(divisor: BigInteger): BigInteger
- def divideAndRemainder(divisor: BigInteger): Array[BigInteger]
- def doubleValue(): Double
- Definition Classes
- BigInteger → Number
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(x: Any): Boolean
- Definition Classes
- BigInteger → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flipBit(n: Int): BigInteger
- def floatValue(): Float
- Definition Classes
- BigInteger → Number
- def gcd(bi: BigInteger): BigInteger
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getLowestSetBit(): Int
- def hashCode(): Int
- Definition Classes
- BigInteger → AnyRef → Any
- def intValue(): Int
- Definition Classes
- BigInteger → Number
- def intValueExact(): Int
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isProbablePrime(certainty: Int): Boolean
- def longValue(): Long
- Definition Classes
- BigInteger → Number
- def longValueExact(): Long
- def max(bi: BigInteger): BigInteger
- def min(bi: BigInteger): BigInteger
- def mod(m: BigInteger): BigInteger
- def modInverse(m: BigInteger): BigInteger
- def modPow(exponent: BigInteger, m: BigInteger): BigInteger
- def multiply(bi: BigInteger): BigInteger
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def negate(): BigInteger
- def nextProbablePrime(): BigInteger
- def not(): BigInteger
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def or(bi: BigInteger): BigInteger
- def pow(exp: Int): BigInteger
- def remainder(divisor: BigInteger): BigInteger
- def setBit(n: Int): BigInteger
- def shiftLeft(n: Int): BigInteger
- def shiftRight(n: Int): BigInteger
- def shortValue(): Short
- Definition Classes
- Number
- def shortValueExact(): Short
- def signum(): Int
- def subtract(bi: BigInteger): BigInteger
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def testBit(n: Int): Boolean
- def toByteArray(): Array[Byte]
- def toString(radix: Int): String
- def toString(): String
- Definition Classes
- BigInteger → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def xor(bi: BigInteger): BigInteger