Versions in this module Expand all Collapse all v0 v0.0.2 Jan 19, 2025 v0.0.1 Dec 8, 2024 Changes in this version + var DimensionsDoNotAgree = errors.New("Dimensions do not agree") + var IncorrectType = errors.New("An incorrect type was received.") + var InvalidValue = errors.New("The supplied value is not valid in the supplied context") + var MultipleErrorsOccurred = errors.New("Multiple errors have occurred") + var UnsupportedType = errors.New("The type of the received value was not valid") + var ValOutsideRange = errors.New("The specified value is outside the allowed range") + func AppendError(errs ...error) error + func ArrayDimsArgree[N any, P any](l []N, r []P) error + func Assert(op func() error) + func ChainedErrorOps(ops ...func(results ...any) (any, error)) error + func Unwrap(err error) error + func Wrap(origErr error, fmtStr string, vals ...any) error + func WrapValueList(origErr error, description string, valsList []WrapListVal) error + type WrapListVal struct + Item any + ItemName string