Searched defs:BigInteger (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java38 * primitive integer types). BigInteger provides analogues to all of Java's
40 * Additionally, BigInteger provides operations for modular arithmetic, GCD
75 * operations can produce a BigInteger with a different sign from the
76 * BigInteger being operated on, as they affect only a single bit, and the
78 * are infinitely many "virtual sign bits" preceding each BigInteger.
81 * descriptions of BigInteger methods. The pseudo-code expression
82 * {@code (i + j)} is shorthand for "a BigInteger whose value is
83 * that of the BigInteger {@code i} plus that of the BigInteger {@code j}."
85 * "{@code true} if and only if the BigInteger {
99 public class BigInteger extends Number implements Comparable<BigInteger> { class in inherits:Number,Comparable
188 public BigInteger(byte[] val) { method in class:BigInteger
207 private BigInteger(int[] val) { method in class:BigInteger
236 public BigInteger(int signum, byte[] magnitude) { method in class:BigInteger
257 private BigInteger(int signum, int[] magnitude) { method in class:BigInteger
289 public BigInteger(String val, int radix) { method in class:BigInteger
357 BigInteger(char[] val) { method in class:BigInteger
475 public BigInteger(String val) { method in class:BigInteger
492 public BigInteger(int numBits, Random rnd) { method in class:BigInteger
530 public BigInteger(int bitLength, int certainty, Random rnd) { method in class:BigInteger
923 BigInteger(int[] magnitude, int signum) { method in class:BigInteger
932 private BigInteger(byte[] magnitude, int signum) { method in class:BigInteger
963 private BigInteger(long val) { method in class:BigInteger
[all...]

Completed in 32 milliseconds