# Functions
Clone returns a copy of the slice.
Contains reports whether v is present in s.
Delete removes the element i from s, returning the modified slice.
Dereference returns all non-nil references, dereferenced.
Equal reports whether two slices are equal: the same length and all elements equal.
EqualFunc reports whether two slices are equal using a comparison function on each pair of elements.
Filter retains all elements in []E that f(E) returns true for.
FilterInPlace retains all elements in []E that f(E) returns true for.
FindFunc finds the first element matching the function, or nil if none do.
Map runs f() over all elements in s and returns the result.
MapFilter runs f() over all elements in s and returns any non-nil results.
Reference takes a pointer to all elements in the slice.
Reverse returns its argument array reversed.
Sort sorts a slice of any ordered type in ascending order.
SortFunc sorts the slice x in ascending order as determined by the less function.