Documentation ¶ Index ¶ type Filter func New(include, exclude []string) *Filter func NewFromPatterns(include, exclude []Pattern) *Filter func (f *Filter) Allows(filename string) bool type Pattern func NewPattern(rawpattern string) Pattern Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Filter ¶ type Filter struct { // contains filtered or unexported fields } func New ¶ func New(include, exclude []string) *Filter func NewFromPatterns ¶ func NewFromPatterns(include, exclude []Pattern) *Filter func (*Filter) Allows ¶ func (f *Filter) Allows(filename string) bool type Pattern ¶ type Pattern interface { Match(filename string) bool } func NewPattern ¶ func NewPattern(rawpattern string) Pattern Source Files ¶ View all Source files filepathfilter.go Click to show internal directories. Click to hide internal directories.