Kernel.not

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

Specs

not true :: false
not false :: true

Strictly boolean "not" operator.

value must be a boolean; if it's not, an ArgumentError exception is raised.

Allowed in guard tests. Inlined by the compiler.

Examples

iex> not false
true