From 2afd66aa57ae0b516b181c0741f5e7cc0ba8ccd0 Mon Sep 17 00:00:00 2001 From: JustFixMe Date: Thu, 15 Aug 2024 20:51:18 +0400 Subject: [PATCH] remove IEqualityOperators interface from ImmutableSequence --- Core/Collections/ImmutableSequence.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Core/Collections/ImmutableSequence.cs b/Core/Collections/ImmutableSequence.cs index 8a89403..e69972c 100644 --- a/Core/Collections/ImmutableSequence.cs +++ b/Core/Collections/ImmutableSequence.cs @@ -1,14 +1,12 @@ using System.Collections; using System.Collections.Immutable; -using System.Numerics; namespace Just.Core.Collections; public class ImmutableSequence : IEnumerable, IReadOnlyList, - IEquatable>, - IEqualityOperators, ImmutableSequence, bool> + IEquatable> { private static readonly int InitialHash = typeof(ImmutableSequence).GetHashCode(); private static readonly Func CompareItem = EqualityComparer.Default.Equals;