19962007Ericsson AB, All Rights Reserved
The contents of this file are subject to the Erlang Public License,
Version 1.1, (the "License"); you may not use this file except in
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.
The Initial Developer of the Original Code is Ericsson AB.
erl_internalRobert VirdingBjarne Däcker1Bjarne Däcker97-01-21Berl_internal.sgmlerl_internalInternal Erlang Definitions
This module defines Erlang BIFs, guard tests and operators.
This module is only of interest to programmers who
manipulate Erlang code.
bif(Name, Arity) -> bool()Test for an Erlang BIFName = atom()Arity = integer()
Returns true if Name/Arity is an Erlang BIF
which is automatically recognized by the compiler, otherwise
false.
guard_bif(Name, Arity) -> bool()Test for an Erlang BIF allowed in guardsName = atom()Arity = integer()
Returns true if Name/Arity is an Erlang BIF
which is allowed in guards, otherwise false.
type_test(Name, Arity) -> bool()Test for a valid type testName = atom()Arity = integer()
Returns true if Name/Arity is a valid Erlang
type test, otherwise false.
arith_op(OpName, Arity) -> bool()Test for an arithmetic operatorOpName = atom()Arity = integer()
Returns true if OpName/Arity is an arithmetic
operator, otherwise false.
bool_op(OpName, Arity) -> bool()Test for a Boolean operatorOpName = atom()Arity = integer()
Returns true if OpName/Arity is a Boolean
operator, otherwise false.
comp_op(OpName, Arity) -> bool()Test for a comparison operatorOpName = atom()Arity = integer()
Returns true if OpName/Arity is a comparison
operator, otherwise false.
list_op(OpName, Arity) -> bool()Test for a list operatorOpName = atom()Arity = integer()
Returns true if OpName/Arity is a list
operator, otherwise false.
send_op(OpName, Arity) -> bool()Test for a send operatorOpName = atom()Arity = integer()
Returns true if OpName/Arity is a send
operator, otherwise false.