Package org.apfloat.internal
Interface DoubleRadixConstants
public interface DoubleRadixConstants
Constants related to different radixes for the
double
data type.- Version:
- 1.0
- Author:
- Mikko Tommila
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final double[]
Bases for radixes 2, ..., 36.static final int[]
The power of the radix in each base.static final long[]
Maximum allowed exponent for each radix.static final double[][]
The minimum number in each radix to have the specified amount of digits.
-
Field Details
-
BASE
static final double[] BASEBases for radixes 2, ..., 36. The base is the radix to the maximum power so that the base is less than all moduli used. -
BASE_DIGITS
static final int[] BASE_DIGITSThe power of the radix in each base. -
MINIMUM_FOR_DIGITS
static final double[][] MINIMUM_FOR_DIGITSThe minimum number in each radix to have the specified amount of digits. -
MAX_EXPONENT
static final long[] MAX_EXPONENTMaximum allowed exponent for each radix.
-