Versions in this module Expand all Collapse all v0 v0.2.0 Jan 28, 2025 v0.1.0 Oct 17, 2020 Changes in this version + var ErrUnterminatedClass = errors.New("unterminated character class") + func GlobMatch(pattern, data string) (bool, error) + func GlobMatchInfo(pattern string, info os.FileInfo) (bool, error) + func GlobMatchName(pattern string, namer Namer) (bool, error) + func Quote(argv []string) string + func Substitute(s string, vars VariableMap) (string, error) + type Glob struct + func CompileGlob(pattern string) (*Glob, error) + func MustCompileGlob(pattern string) *Glob + func (g *Glob) MarshalText() ([]byte, error) + func (g *Glob) Match(data string) bool + func (g *Glob) MatchInfo(info os.FileInfo) bool + func (g *Glob) MatchName(namer Namer) bool + func (g *Glob) String() string + func (g *Glob) UnmarshalText(text []byte) error + type GlobError struct + Err error + Index int + Pattern string + func (err *GlobError) Error() string + func (err *GlobError) Unwrap() error + type Namer interface + Name func() string + type SimpleVariableMap map[string]string + func (smap SimpleVariableMap) Get(variable string) (string, bool) + type VariableMap interface + Get func(variable string) (value string, present bool)