DoubleConsts

This class contains additional constants documenting limits of the {@code double} type.

@author Joseph D. Darcy

Members

Variables

EXP_BIAS
enum int EXP_BIAS;

Bias used in representing a {@code double} exponent.

EXP_BIT_MASK
enum long EXP_BIT_MASK;

Bit mask to isolate the exponent field of a {@code double}.

MIN_SUB_EXPONENT
enum int MIN_SUB_EXPONENT;

The exponent the smallest positive {@code double} subnormal value would have if it could be normalized..

SIGNIFICAND_WIDTH
enum int SIGNIFICAND_WIDTH;

The number of logical bits in the significand of a {@code double} number, including the implicit bit.

SIGNIF_BIT_MASK
enum long SIGNIF_BIT_MASK;

Bit mask to isolate the significand field of a {@code double}.

SIGN_BIT_MASK
enum long SIGN_BIT_MASK;

Bit mask to isolate the sign bit of a {@code double}.

Meta