/// <inheritdoc /> public bool SetEquals(IEnumerable <T> other) { lock (Sync) return(InternalSource.SetEquals(other)); }
/// <inheritdoc /> public bool SetEquals(IEnumerable <T> other) => Sync.ReadValue(() => InternalSource.SetEquals(other));