1
๐บ๏ธ Mapping & Filtering
Maps the list, providing the elementโs index along with the item to the
mapper function. Perfect for generating indexed widgets.Maps the list and automatically filters out all resulting
null values, guaranteeing a non-nullable output list.2
๐ Sorting & Order
Gets a new list containing the elements of the original list in reverse order.
Sorts the list in-place (mutates the original list) based on a selected property.
Mutates the original list
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
Splits the list into smaller sub-lists (chunks) of a maximum specified size. Highly useful for pagination or multi-column layouts.
