Erlang Programming/Operators
Logical operators
not, and, or
Binary operators
bnot, bor, band, bxor
String operators
++, --, (\s*)
where (\s*) is the regular expression for white space which concatenates two strings
Disjunction Guards
f(X) when X==42 ; X==32 ; X==0 -> X+1.