A character vector with the types of operators to return. The
types may one or more of: 'namespace', 'component', 'indexing', 'sequence',
'arithmetic', 'relational', 'logical', 'tilde', 'assignment', 'help',
'user', or user-defined type specified in a call to
setOperator
. It may also be one of the special groups:
'REG(ISTERED)', 'UNREG(ISTERED)', 'SPECIAL', 'ALL'. See Details.operators
provides the names of defined operators. These can
be either registered operators (using setOperators
), or
unregistered operators definde by the %any%
syntax.
By default, only registered operators are returned. This is purely for
performance reasons as an exhausting search for %any%
functions is
expensive.
See Syntax.for the core R operators
types
may also be one a special operator groupings:
-
REG(ISTERED): (Default). Those registered by
setOperators
- UNREG(ISTERED): Unregisted operators, requires expensive search.
- ALL: All operators, requires expensive search of environments.
-
SPECIAL: All operators defined using the
%any%
syntax.