intersection method

  1. @override
Set<E> intersection(
  1. Set<Object?> other
)
override

Creates a new set with the elements of this that are in other.

Implementation

@override
Set<E> intersection(Set<Object?> other) {
  return _collective.intersection(other);
}