Overview
List is a special type of variable that can hold a collection of values
in an orderly fashion. Each value present in a list is called element.
List is ordered in the sense, it will retain the exact order in which
elements are added to it.
A list in 'Deluge' can contain values of different types say number,
text, date etc. You can also force the list to accept only specific type
of values using special qualifiers. In general, a list provides methods
to store, retrieve and manipulate aggregate data.
Following functionality is available for list in Deluge:
Related Links