Versions in this module Expand all Collapse all v1 v1.2.4 Feb 13, 2019 Changes in this version + type AdapterFunc func(fieldpath []string) (string, bool) + func (fn AdapterFunc) Field(fieldpath []string) (string, bool) + type Adaptor interface + Field func(fieldpath []string) (value string, present bool) + type All []Filter + func (m All) Match(adaptor Adaptor) bool + type Any []Filter + func (m Any) Match(adaptor Adaptor) bool + type Filter interface + Match func(adaptor Adaptor) bool + func Parse(s string) (Filter, error) + func ParseAll(ss ...string) (Filter, error) + type FilterFunc func(Adaptor) bool + var Always FilterFunc = func(adaptor Adaptor) bool { ... } + func (fn FilterFunc) Match(adaptor Adaptor) bool