Merges the other set into the receiver. In case of collisions the earliest sequence wins.
(other TimedSet)
| 168 | |
| 169 | // Merges the other set into the receiver. In case of collisions the earliest sequence wins. |
| 170 | func (set TimedSet) Add(other TimedSet) bool { |
| 171 | return set.AddAtSequence(other, 0) |
| 172 | } |
| 173 | |
| 174 | // Merges the other set into the receiver at a given sequence. */ |
| 175 | func (set TimedSet) AddAtSequence(other TimedSet, atSequence uint64) bool { |
no test coverage detected