Lines Matching refs:other
76 func (ll *LabelList) Equals(other LabelList) bool {
77 if len(ll.Includes) != len(other.Includes) || len(ll.Excludes) != len(other.Excludes) {
81 if ll.Includes[i] != other.Includes[i] {
86 if ll.Excludes[i] != other.Excludes[i] {
127 func (ll *LabelList) Append(other LabelList) {
128 if len(ll.Includes) > 0 || len(other.Includes) > 0 {
129 ll.Includes = append(ll.Includes, other.Includes...)
131 if len(ll.Excludes) > 0 || len(other.Excludes) > 0 {
132 ll.Excludes = append(other.Excludes, other.Excludes...)
570 func (ll labelListSelectValues) appendSelects(other labelListSelectValues, forceSpecifyEmptyList bo…
571 for k, v := range other {
631 func (cll configurableLabelLists) Append(other configurableLabelLists, forceSpecifyEmptyList bool) {
632 for axis, otherSelects := range other {
701 func (lla *LabelListAttribute) Append(other LabelListAttribute) *LabelListAttribute {
702 forceSpecifyEmptyList := lla.ForceSpecifyEmptyList || other.ForceSpecifyEmptyList
703 if forceSpecifyEmptyList && lla.Value.IsNil() && !other.Value.IsNil() {
706 lla.Value.Append(other.Value)
710 lla.ConfigurableValues.Append(other.ConfigurableValues, forceSpecifyEmptyList)
962 func (csl configurableStringLists) Append(other configurableStringLists) {
963 for axis, otherSelects := range other {
982 func (sl stringListSelectValues) appendSelects(other stringListSelectValues) {
983 for k, v := range other {
988 func (sl stringListSelectValues) hasConfigurableValues(other stringListSelectValues) bool {
1018 func (sla *StringListAttribute) Append(other StringListAttribute) *StringListAttribute {
1019 sla.Value = append(sla.Value, other.Value...)
1023 sla.ConfigurableValues.Append(other.ConfigurableValues)