join method
Join another replica's OR-set (union of adds and of removes).
Implementation
void join(OrSet other) {
_adds.addAll(other._adds);
_removes.addAll(other._removes);
}
Join another replica's OR-set (union of adds and of removes).
void join(OrSet other) {
_adds.addAll(other._adds);
_removes.addAll(other._removes);
}