pub fn extern_spec_u128_is_power_of_two(self_: u128) -> boolExpand description
extern spec for u128::is_power_of_two
This is not a real function: its only use is for documentation.
terminates
ghost
ensures
result == (self != $zero && self & (self - $one) == $zero)