join method

void join(
  1. OrSet other
)

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);
}