Set<E>.identity constructor
Creates an empty identity Set.
The created Set is a LinkedHashSet that uses identity as equality relation.
The set is equivalent to one created by LinkedHashSet<E>.identity()
.
Implementation
factory Set.identity() = LinkedHashSet<E>.identity;