Bitwise.band

You're seeing just the function band, go back to Bitwise module for more information.

Specs

band(integer(), integer()) :: integer()

Calculates the bitwise AND of its arguments.

Allowed in guard tests. Inlined by the compiler.

Examples

iex> band(9, 3)
1