Beispiel #1
0
 /// <inheritdoc />
 public bool Overlaps(IEnumerable <T> other)
 {
     using (EnterReadLock.Enter(LockObject))
         return(_setData.Overlaps(other));
 }
Beispiel #2
0
 /// <inheritdoc />
 public bool IsProperSubsetOf(IEnumerable <T> other)
 {
     using (EnterReadLock.Enter(LockObject))
         return(_setData.IsProperSubsetOf(other));
 }