UnmodifiableSetFromISet<T> constructor
UnmodifiableSetFromISet<T> (
- ISet<
T> ? iset
Create an unmodifiable Set view of type UnmodifiableSetFromISet, from an iset
.
Implementation
UnmodifiableSetFromISet(ISet<T>? iset)
: _iSet = iset ?? ISetImpl.empty<T>(),
_set = null;