list< T >¶
Represents a sequence of objects T, where T can be any datatype.
Example:
Data : list< int >
list of integersData : list< Person >
list of Person objectsData : list< map< int, string > >
list of maps
Optional Parameters
- Size constraint -
list< T >( min, max )
A range can be optionally specified that can be used as the minimum and maximum number of entries permitted.