package
0.1.4
Repository: https://github.com/codeactual/kubeauth.git
Documentation: pkg.go.dev

# Functions

AncestorDirs returns all absolute paths between a starting descendant absolute path and an ancestor absolute path.
Append behaves like Join except that as each element must add at least one level to the path.
FileAncestor returns the intermediate directories between a root directory and a descendant file/directory.
GlobAny evaluates whether candidate paths match at least one inclusion pattern while matching zero exclusion patterns.
No description provided by the author
PathMatchAny evaluates whether a single candidate path matches at least one inclusion pattern while matching zero exclusion patterns.
PathToSafeFilename converts a filepath to a string usable as a filename.
WalkAbs wraps the standard Walk to make several adjustments: an absolute path is passed to the standard Walk, absolute paths are passed to the input WalkFunc, and the WalkFunc is a new type defined by this package.

# Structs

Glob defines an inclusion pattern for GlobAny searches.
GlobAnyInput defines a path-matching operation which considers whether candidate paths match at least one inclusion pattern while matching zero exclusion patterns.
GlobAnyOutput describes the result of a GlobAnyInput evalation of candidate paths.
MatchAnyInput defines a path-matching operation which considers whether a single candidate path matches at least one inclusion pattern while matching zero exclusion patterns.
MatchAnyOutput describes the result of a MatchAnyInput evalation of a candidate path.

# Type aliases

WalkFunc matches std_filepath.WalkFunc except it returns an error slice.