Name

tolist — Converts a value to a list (deprecated, use (list)VAR).

Synopsis

list tolist ( any VAR );
 

Parameters

any VAR

Return

list

Description

 If the value can't be converted to a list, nillist is returned.
Functionality replaced by retyping: any l_1 = [1, 2, 3]; list <integer> l_2 = (list<integer>) l_1;