Erlang 程序设计/运算符
外观
逻辑运算符
not, and, or
二进制运算符
bnot, bor, band, bxor
字符串运算符
++, --, (\s*)
where (\s*) is the regular expression for white space which concatenates two strings
析取防护
f(X) when X==42 ; X==32 ; X==0 -> X+1.
逻辑运算符
not, and, or
二进制运算符
bnot, bor, band, bxor
字符串运算符
++, --, (\s*)
where (\s*) is the regular expression for white space which concatenates two strings
析取防护
f(X) when X==42 ; X==32 ; X==0 -> X+1.