Skip to main content
1

๐Ÿ—บ๏ธ Mapping & Filtering

List<R>
Maps the list, providing the elementโ€™s index along with the item to the mapper function. Perfect for generating indexed widgets.
List<R>
Maps the list and automatically filters out all resulting null values, guaranteeing a non-nullable output list.
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.