Sort List
Sorts a list.
Description
Generate a new list containing the elements of the provided list sorted in ascending or descending order depending on the asc
parameter.
Inputs
- Object list (List): The list to sort.
- Property (Property): The property of the elements to base the sort on.
- ASC (Boolean):
true
to sort in ascending order,false
for descending.
Outputs
- Sorted list (List): The resulting list.