# Functions
And returns true if all of the specified Func filters in the arguments return true.
Equal returns a filter that returns true only if the input value matches the specified value.
False creates a filter Func that always returns false, regardless of the input value.
Not returns a filter function that returns the opposite of what the specified Func in the arguments would return.
Or returns true if any of the specified Func filters in the arguments return true.
Slice filters the specified slice of entries and returns a new slice that contains only those elements that have passed the filter Func.
True creates a filter Func that always returns true, regardless of the input value.
# Type aliases
Func represents a filtering function.