ListExtended<T> extension
ListExtended extension is used to add the additional functionalities in the existing list.
random function will generate a random item T
of the list
getAppendList function will append the list one after another to give the unlimited data to the users.
unique function will remove the duplicate items in the list
- on
-
- List<
T>
- List<
Methods
-
getAppendList(
[int max = 1]) → List< T> -
Available on List<
T> , provided by the ListExtended extension -
random(
) → T -
Available on List<
T> , provided by the ListExtended extension -
unique(
) → List< T> -
Available on List<
T> , provided by the ListExtended extension