package
1.3.0-alpha.5
Repository: https://github.com/intelsdi-x/kubernetes.git
Documentation: pkg.go.dev
# Functions
AggregateGoroutines runs the provided functions in parallel, stuffing all non-nil errors into the returned Aggregate.
FilterOut removes all errors that match any of the matchers from the input error.
Flatten takes an Aggregate, which may hold other Aggregates in arbitrary nesting, and flattens them all into a single Aggregate, recursively.
NewAggregate converts a slice of errors into an Aggregate interface, which is itself an implementation of the error interface.
# Variables
ErrPreconditionViolated is returned when the precondition is violated.
# Interfaces
Aggregate represents an object that contains multiple errors, but does not necessarily have singular semantic meaning.
# Type aliases
Matcher is used to match errors.