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

LIST.LISTOFCHAR built-in procedure

This procedure type specifies a handle to a list.

Syntax


TYPE LIST.LISTOFCHAR;

Example


/* 
** Declare a variable of the type
** LISTOFCHAR, then create the 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