UnmodifiableSetFromISet<T>.fromSet constructor

UnmodifiableSetFromISet<T>.fromSet(
  1. Set<T> set
)

Create an unmodifiable Set view of type UnmodifiableSetFromISet, from another Set.

Implementation

UnmodifiableSetFromISet.fromSet(Set<T> set)
    : _iSet = null,
      _set = set;