func()

in wfn/matcher.go [40:50]


func (a *Attributes) MatchWithoutVersion(attr *Attributes) bool {
	if a == nil || attr == nil {
		return a == attr // both are nil
	}
	return matchAttr(a.Product, attr.Product) &&
		matchAttr(a.Vendor, attr.Vendor) && matchAttr(a.Part, attr.Part) &&
		matchAttr(a.Update, attr.Update) && matchAttr(a.Edition, attr.Edition) &&
		matchAttr(a.Language, attr.Language) && matchAttr(a.SWEdition, attr.SWEdition) &&
		matchAttr(a.TargetHW, attr.TargetHW) && matchAttr(a.TargetSW, attr.TargetSW) &&
		matchAttr(a.Other, attr.Other)
}