Set<E>.of constructor Null safety

Set<E>.of(
  1. Iterable<E> elements
)

Creates a Set from elements.

The created Set is a LinkedHashSet. As such, it considers elements that are equal (using operator ==) to be indistinguishable, and requires them to have a compatible Object.hashCode implementation.

The set is equivalent to one created by LinkedHashSet<E>.of(elements).

Implementation

factory Set.of(Iterable<E> elements) = LinkedHashSet<E>.of;