Note that .FUNdots can be a rectangular two-dimensional list of arguments to FUN.
If so, .FUNdots is interpreted as follows:
The length of the first dimension of .FUNdots is the number of arguments supplied to FUN.
The length of the second dimension of .FUNdots must be equal to the length of a.
See prepare_.FUNdots() for more details on the .FUNdots argument.
Options for the rowcoltypes argument are:
"all": transfer both row and column types of a directly to output.
"transpose": rowtype of a becomes coltype of output; coltype of a becomes rowtype of output. "transpose" is helpful for FUNs that transpose a upon output.
"row": rowtype of a becomes both rowtype and coltype of output.
"col": coltype of a becomes both rowtype and coltype of output.
"none": rowtype and coltype not set by unaryapply_byname. Rather, FUN will set rowtype and coltype.
Note that rowcoltypes should not be a vector or list of strings.
Rather, it should be a single string.