names the function.
can be a variable name, constant, or any SAS expression, including another function. The number and type of arguments that SAS allows are described with individual functions. Multiple arguments are separated by a comma.
can be any form of a SAS variable list, including individual variable names. If more than one variable list appears, separate them with a space or with a comma and another OF.
Example | The following two examples are equivalent. a=sum(of x1-x10 y1-y10 z1-z10); a=sum(of x1-x10, of y1-y10, of z1-z10); |
names a currently defined array. Specifying an array with an asterisk as a subscript causes SAS to treat each element of the array as a separate argument.
See | For a list of these restrictions, see Using the OF Operator with Temporary Arrays. |