1
2
๐ Sorting & Order
List<T>
Gets a new list containing the elements of the original list in reverse order.
void
Sorts the list in-place (mutates the original list) based on a selected property.
Mutates the original list
List<T>
Sorts the list based on a selected property and returns a new sorted list. The original list remains unchanged.
Returns a new sorted list. The original list remains unchanged.
3
โ๏ธ Structural Changes
List<List<T>>
Splits the list into smaller sub-lists (chunks) of a maximum specified size. Highly useful for pagination or multi-column layouts.
