NAME

aggregate_list - construct a list

SYNTAX

list aggregate_list(mixed ... elems);
or
(< elem1, elem2, ... >)

DESCRIPTION

Construct an list with the arguments as indexes. This function could be written in LPC as:

list aggregate(mixed ... elems) { return mklist(elems); }

KEYWORDS

list

SEE ALSO

sizeof, listp and mklist