LIST.MAKE
built-in functionThis function creates a new, empty list. A list must be created before it can be used.
FUNCTION LIST.MAKE
RETURN Listofchar;
Any lists created with this function should only be deleted with the LIST.DESTROY
procedure.
/*
** Create a new list named my_List
*/
PROCEDURE my_proc IS
my_List LIST.LISTOFCHAR;
BEGIN
my_List := LIST.MAKE;
END;
About the LIST
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.