func()

in internal/filters/filters.go [37:47]


func (o *or) Contains(name string, typ string) bool {
	if o.Empty() {
		return true
	}
	for _, f := range o.fs {
		if f.Contains(name, typ) {
			return true
		}
	}
	return false
}