A script-enabled browser is required for this page to function properly.

LIST.MAKE built-in function

This function creates a new, empty list. A list must be created before it can be used.

Syntax


FUNCTION LIST.MAKE
RETURN Listofchar;

Usage notes

Any lists created with this function should only be deleted with the LIST.DESTROY procedure.

Example


/* 
** Create a new list named my_List
*/
PROCEDURE my_proc IS
  my_List LIST.LISTOFCHAR;
BEGIN
    my_List := LIST.MAKE;
END;

See also

About the LIST built-in package

LIST built-in package