count_zeros
count_zeros(x::Integer) -> Integer
Number of zeros in the binary representation of x
.
julia> count_zeros(Int32(2 ^ 16 - 1))
16
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.