List utils
Check if the given input exists in a list
Add an element to the end of a list
Counts the number of occurrences of an element in a list.
Calculates the average of a list of numbers.
Extends a list with another list
Gets an item from a list given its index. The item can be of any type.
Gets the length of a list.
Get the maximum value of a list of numbers.
Get the minimum value of a list of numbers.
Removes all occurences of a value from a list. Value can be of any type.
Reverses a list
Slices a list
Sorts a list
Gets the sum of a list of numbers.
Create a list from multiple elements of any type. The order of the list items is the same as the order of the inputs.