We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0718999 commit 802f836Copy full SHA for 802f836
src/Equatable.SourceGenerator/Models/EquatableArray.cs
@@ -1,7 +1,9 @@
1
using System.Collections;
2
+using System.Diagnostics.CodeAnalysis;
3
4
namespace Equatable.SourceGenerator.Models;
5
6
+[ExcludeFromCodeCoverage]
7
public readonly struct EquatableArray<T>(T[] array) : IEquatable<EquatableArray<T>>, IEnumerable<T>
8
where T : IEquatable<T>
9
{
0 commit comments