/// <inheritdoc /> public void IntersectWith(IEnumerable <T> other) { lock (Sync) InternalSource.IntersectWith(other); }
/// <inheritdoc /> public void IntersectWith(IEnumerable <T> other) => Sync.Write(() => InternalSource.IntersectWith(other));