removed property

Set<EntityT> removed

Used in tests.

Implementation

Set<EntityT> get removed {
  final result = <EntityT>{};
  _rel._counts.forEach((EntityT object, count) {
    if (count < 0) result.add(object);
  });
  return result;
}