Java com.google.common.math BigIntegerMath fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.math BigIntegerMath fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.math BigIntegerMath.

The text is from its open source code.

Method

BigIntegerbinomial(int n, int k)
Returns n choose k , also known as the binomial coefficient of n and k , that is, n!
BigIntegerfactorial(int n)
Returns n!
intlog10(BigInteger x, RoundingMode mode)
Returns the base-10 logarithm of x , rounded according to the specified rounding mode.
intlog2(BigInteger x, RoundingMode mode)
Returns the base-2 logarithm of x , rounded according to the specified rounding mode.
BigIntegersqrt(BigInteger x, RoundingMode mode)
Returns the square root of x , rounded with the specified rounding mode.