union method

  1. @override
Set<E> union(
  1. Set<E> other
)
override

Creates a new set with the elements of this and other.

Implementation

@override
Set<E> union(Set<E> other) {
  return _collective.union(other);
}