Documentation ¶
Overview ¶
Package gintersect provides methods to check whether the intersection of several globs matches a non-empty set of strings.
Index ¶
Constants ¶
View Source
const ( FlagNone = iota FlagPlus FlagStar )
Variables ¶
View Source
var ( // Errors. ErrInvalidInput = errors.New("the input provided is invalid") )
Functions ¶
Types ¶
type Token ¶
type Token interface { Type() TokenType Flag() Flag SetFlag(Flag) // Equal describes whether the given Token is exactly equal to this one, barring differences in flags. Equal(Token) bool String() string }
Token is the element that makes up a Glob.
func NewCharacter ¶
Click to show internal directories.
Click to hide internal directories.