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