Function group list
Function group has those functions and groups:
- Group
list_producers- Functions to create lists - Group
list_manipluations- Function to manipulatre a list and create a new one- Function
sort- Sort a list. - Function
sort_unique- Sort a list and remove duplicates. - Function
indexed- Map a list into a new list where each element in the new list is an object with two elements: - Function
push- Add items to a list. - Function
push_front- Add items to the from of a list. - Function
reverse- Reveres the order of a list. - Function
pop- Pop the last item from a list. - Function
pop_first- Pop the first item from a list.
- Function
- Group
list_functional- Functional function over a list of items- Function
filter- Filter a list. - Function
group_by- Group items by function. - Function
sort_by- Sort a list. - Function
fold- Fold all the items in a list into a new value. - Function
map- Map a list into a new list using a function. - Function
flat_map- Flat map a list into a new list using a function.
- Function
- Group
list_folding- Function top fold a list into a single item- Function
sum- Sum all the items in the list. - Function
any- Check if any of item in a list is true. - Function
all- Check if all the items in a list are true. - Function
join- Join all the items in the list into a String. - Function
first- The first item in a list. - Function
last- The last item in a list.
- Function
Use additional help with a function name to see more details about the function.