 |
» |
|
|
|
Function list. Displays information about the predefined functions. Syntax |  |
FUNCL[IST] [pattern] [group] [options]
|
Parameters |  |
- pattern
The name(s) of the function(s) to be displayed.
This parameter can be specified with wildcards or with a full regular expression. Refer to appendix A for additional information about pattern matching and regular expressions. The following wildcards are supported: - @
Matches any character(s). - ?
Matches any alphabetic character. - #
Matches any numeric character.
The following are valid name pattern specifications: - @
Matches everything; all names. - pib@
Matches all names that start with "pib". - log2##4
Matches "log2004", "log2754", and so on.
The following regular expressions are equivalent to the patterns with wildcards that are listed above:
`.*`
`pib.*`
`log2[0-9][0-9]4`
|
By default, all functions are displayed. - group
The functions are logically divided into groups, and they can be displayed, filtered by group name. - COERCION
Coercion functions. - UTILITY
General utility functions. - ADDRESS
Address manipulation functions. - PROCESS
Process data structure address functions. - PROCEDURE
Procedure name/length/entry/path functions. - STRING
String manipulation functions. - SYMBOLIC
Symbolic access functions. - ALL | @
Display all groups.
By default, all groups are displayed. - options
Any number of the following options can be specified in any order, separated by blanks: - NAME
Display function name and result type. - USE
Display a short summary of use. - NOUSE
Skip the use summary. - PARMS
Display parameter names, types, default values. - NOPARMS
Skip parameter displays. - DESC
Display a general description. - NODESC
Skip the description. - EXAMPLE
Display the example. - NOEXAMPLE
Skip the example. - ALL | @
Display everything. Same as: NAME USE PARMS DESC EXAMPLE
- PAGE
Page eject after each function definition.
Useful for paged (listfile) output. - NOPAGE
No special page ejects.
If none of the options above are specified, the NAME is displayed by default. If any options are specified, they are accumulated to describe which fields are printed.
|