# Functions
Report whether the given boolean function evaluates to true for all elements of the given slice.
Report whether the given boolean function evaluates to true for at least one element of the given slice.
Collect (map) slice through given function.
Check if slice contains given element.
Count elements for which the given boolean function evaluates to true.
Compare two slices of comparable elements.
Compare two slices by a given equality function.
Get first n elements of a slice.
Get last n elements of a slice.
Report whether the given boolean function evaluates to true for none of the elements of the given slice.
Remove all occurrences of given element from slice (and return new slice; old slice remains unchanged).
Reverse slice.
Select slice by given function.
Sort slice of orderable elements.
Sort slice by given comparator function.
Remove duplicates from slice of comparable elements.
Remove duplicates from slice by given mapper function.
# Interfaces
Orderable constraint.