cloneSet<E> abstract method

Set<E> cloneSet<E>(
  1. Set<E> source
)

Clones a set, producing a new set with cloned elements.

Each element in the source set is cloned according to the cloner's rules.

Implementation

Set<E> cloneSet<E>(Set<E> source);