addAll adds all the entries from other to t.
(other nilnessTable)
| 513 | |
| 514 | // addAll adds all the entries from other to t. |
| 515 | func (t nilnessTable) addAll(other nilnessTable) { |
| 516 | for k, v := range other { |
| 517 | if r, ok := t[k]; !ok || r != v { |
| 518 | t[k] = v |
| 519 | } |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | type nilnessTableSet []nilnessTable |
| 524 |