跳到内容

Erlang 程序设计/运算符

来自 Wikibooks,一个开放世界的开放书籍

逻辑运算符

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.
华夏公益教科书