# Functions
All returns a FilterFunc that filters a list of releases determined by the predicate 'f0 && f1 && ..
Any returns a FilterFunc that filters a list of releases determined by the predicate 'f0 || f1 || ..
Reverse reverses the list of releases sorted by the sort func.
SortByChartName sorts the list of releases by a release's chart name in lexicographical order.
SortByDate returns the list of releases sorted by a release's last deployed time (in seconds).
SortByName returns the list of releases sorted in lexicographical order.
SortByRevision returns the list of releases sorted by a release's revision number (release.Version).
SplitManifests takes a string of manifest and returns a map contains individual manifests.
StatusFilter filters a set of releases by status code.
# Structs
SimpleHead defines what the structure of the head of a manifest file.
# Type aliases
FilterFunc returns true if the release object satisfies the predicate of the underlying filter func.