intersection method

Set<T> intersection(
  1. Set<Object?> other
)

Implementation

Set<T> intersection(Set<Object?> other) {
  RxTracking.track(this);
  return value.intersection(other);
}