FloatConsts

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

@author Joseph D. Darcy

Members

Variables

EXP_BIAS
enum int EXP_BIAS;

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

EXP_BIT_MASK
enum int EXP_BIT_MASK;

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

MIN_SUB_EXPONENT
enum int MIN_SUB_EXPONENT;

The exponent the smallest positive {@code float} 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 float} number, including the implicit bit.

SIGNIF_BIT_MASK
enum int SIGNIF_BIT_MASK;

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

SIGN_BIT_MASK
enum int SIGN_BIT_MASK;

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

Meta