# Functions
All returns true if every element in a slice satisfies the given condition.
Any returns true if at least one element in a slice satisfies the given condition.
Chunk divides the given slice into multiple new slices, each at most having lengths of the given size.
Convert returns an array of objects of type To from an array of objects of type From.
Count returns the number of elements in a slice that match the given condition.
Filter returns a subset of the original slice, consisting of all the elements in the original slice which satisfy the given condition.
Find evaluates the given condition and returns the first value which meets the condition, as well as a boolean representing whether a value was found.
Includes returns true if a slice contains the target value.
IndexOf returns the index of the target value in a slice.
IsIdentical checks if two slices refer to the same underlying slice object.
IsUnique returns true if all elements of a slice are unique.
Join returns a string consisting of all elements in a slice, separated by the given delimiter.
Map returns a new slice with the elements of the original slice transformed according to the provided function.
MustConvert returns an array of To objects by converting every element in From to To.
Reverse performs an in-place reversal of the elements in a slice.
Sort performs an in-place sort of a slice.
Transform performs an in-place transformation of a slice.
Unique returns a new slice of the unique elements in a given slice.