# Functions
Contains returns true if the array contains the value.
Every returns true if all of the elements is matched.
Filter filters the array using the function fn.
Find searches an element in a slice based on a predicated.
FindIndex returns the index of the first occurrence of value in collection.
ForEach iterates the value of slice.
GroupBy ...
Includes returns true if the array contains the value.
IndexOf returns the index of the first occurrence of value in collection.
Join joins all elements of the array into a string.
Last returns the last element of collection.
LastIndexOf returns the index of the last occurrence of value in collection.
Map applies the function fn to each value in the array and returns a new array with the results.
Max returns the maxium value in collection.
Min returns the minimum value in collection.
Reduce returns the result of applying the function fn to each value in the array and an accumulator, starting with the initial value.
Repeat creates a slice with N copies of the initail value.
Reverse returns an array of reversed values.
Shuffle returns an array of shuffled values.
Some returns true if some of the elements is matched.
Sort sorts the generic slice.
UniqueBy returns an array of unique values by given filter function.
# Interfaces
Number ...