Returns a new empty list or returns a list for a given set
.
This function does not generate a change.
list([value])
Argument | Type | Description |
---|---|---|
value | set/list/tuple (optional) | Optional value to initialize the list. If the argument is already a list or tuple, the return value will be the same list or tuple. |
A new list (Unless the given argument was a tuple or list, then no conversion takes place and the given list or tuple will be the return value).
This code shows some return values for list():
list( set({}, {}) );
Return value in JSON format
[
{},
{}
]