bias property
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;
Return the bias of this FloatingPointValue, the offset of the
exponent, also representing the zero exponent 2^0 = 1
.
int get bias => pow(2, exponentWidth - 1).toInt() - 1;