[erlang-questions] nand problem
Imants Cekusins
imantc@REDACTED
Mon Jan 26 23:09:51 CET 2015
or use guards:
b_and(A,B) when is_boolean(A), is_boolean(B)->
A and B.
guards would cause a crash if non-booleans are passed.
More information about the erlang-questions
mailing list