Example #1
0
 /// <inheritdoc />
 public bool IsSubsetOf(IEnumerable <T> other)
 {
     lock (Sync) return(InternalSource.IsSubsetOf(other));
 }
 /// <inheritdoc />
 public bool IsSubsetOf(IEnumerable <T> other) => Sync.ReadValue(() => InternalSource.IsSubsetOf(other));