extern_spec_u16_is_power_of_two

Function extern_spec_u16_is_power_of_two 

Source
pub fn extern_spec_u16_is_power_of_two(self_: u16) -> bool
Expand description

extern spec for u16::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)