Bitwise.bor

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

Specs

bor(integer(), integer()) :: integer()

Calculates the bitwise OR of its arguments.

Allowed in guard tests. Inlined by the compiler.

Examples

iex> bor(9, 3)
11