func()

in internal/filters/filters.go [50:60]


func (o *or) Empty() bool {
	if len(o.fs) == 0 {
		return true
	}
	for _, f := range o.fs {
		if f.Empty() {
			return true
		}
	}
	return false
}