|
@@ -5,12 +5,14 @@
|
|
using System;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Diagnostics;
|
|
|
|
+using System.Diagnostics.CodeAnalysis;
|
|
using System.Linq;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
// from https://github.com/dotnet/corefx/blob/ec2685715b01d12f16b08d0dfa326649b12db8ec/src/System.Linq/src/System/Linq/Set.cs
|
|
// from https://github.com/dotnet/corefx/blob/ec2685715b01d12f16b08d0dfa326649b12db8ec/src/System.Linq/src/System/Linq/Set.cs
|
|
namespace System.Linq
|
|
namespace System.Linq
|
|
{
|
|
{
|
|
|
|
+ [ExcludeFromCodeCoverage]
|
|
internal sealed class Set<TElement>
|
|
internal sealed class Set<TElement>
|
|
{
|
|
{
|
|
private readonly IEqualityComparer<TElement> _comparer;
|
|
private readonly IEqualityComparer<TElement> _comparer;
|