list.Sort(list : list, key : string?, reverse: bool?) : list
Sort the entries in a list.
1.9.1 or later
| Name | Type | Description |
| list | list | The list value. |
| key | string | (optional, default:nil) key for value if list contains maps |
| reverse | bool | (optional, default:false) sort in reverse order |
a sorted version of the original list.
| Output | ||
| [ 1, 9, 25 ] |