bias property

int get bias

Return the bias of this FloatingPointValue, the offset of the exponent, also representing the zero exponent 2^0 = 1.

Implementation

int get bias => pow(2, exponentWidth - 1).toInt() - 1;