bias property
latefinal
Return the exponent Logic value representing the true zero exponent 2^0 = 1 often termed bias or the offset of the stored exponent.
Implementation
late final bias = Const((1 << exponent.width - 1) - 1, width: exponent.width)
.named(_nameJoin('bias', name), naming: Naming.mergeable);