func()

in internal/filters/filters.go [63:73]


func (o *or) Matches(lbls map[string]string) bool {
	if o.Empty() {
		return true
	}
	for _, f := range o.fs {
		if f.Matches(lbls) {
			return true
		}
	}
	return false
}