Function eqlZero [src]
Returns true if a == 0.
Prototype
pub fn eqlZero(a: Const) bool
Parameters
a: Const
Source
pub fn eqlZero(a: Const) bool {
var d: Limb = 0;
for (a.limbs) |limb| d |= limb;
return d == 0;
}
pub fn eqlZero(a: Const) bool
a: Const
pub fn eqlZero(a: Const) bool {
var d: Limb = 0;
for (a.limbs) |limb| d |= limb;
return d == 0;
}