 |
MathExplained - guava-libraries - Guava's math utilities, explained. - Guava: Google Core Libraries
Operation IntMath LongMath BigIntegerMath Greatest common divisor gcd(int, int) gcd(long, long) In JDK: BigInteger.gcd(BigInteger) Modulus (always nonnegative, -5 mod 3 is 1) mod(int, int) mod(long, long) In JDK: BigInteger.mod(BigInteger) Exponentiation
code.google.com |
 |