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