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):
trueto sort in ascending order,falsefor descending.
Outputs
- Sorted list (List): The resulting list.