union abstract method

RulesSet<T> union(
  1. RulesSet<T> other
)

Returns a set that is the union of the set calling union() and the set passed to union(). That is, returns a set that contains all elements from both sets.

Implementation

RulesSet<T> union(RulesSet<T> other);