universal method

CustomSet<T> universal(
  1. Iterable<T> elements
)

Creates a universal set from the given elements.

The universal set contains all elements under consideration for a particular discussion or problem. Notation: U or S

Implementation

CustomSet<T> universal(Iterable<T> elements) => CustomSet(elements);