-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProjectionEqualityComparer.cs
43 lines (39 loc) · 1.68 KB
/
ProjectionEqualityComparer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace AdventOfCode.Common;
public static class ProjectionEqualityComparer
{
/// <summary>
/// Creates an equality comparer using the provided function
/// </summary>
/// <param name="equalityFunction">The equality function</param>
/// <returns>The new comparer</returns>
/// <remarks>
/// The returned comparer may or may not be valid in a hashset or dictionary,
/// depending on how the <paramref name="equalityFunction"/> relates to the
/// default hashcode for <typeparamref name="T"/>.
/// </remarks>
public static IEqualityComparer<T> Create<T>(Func<T?, T?, bool> equalityFunction) =>
new ProjectionEqualityComparerImpl<T>(equalityFunction, EqualityComparer<T>.Default.GetHashCode!);
/// <summary>
/// Creates an equality comparer using the provided functions
/// </summary>
/// <param name="equalityFunction">The equality function</param>
/// <param name="hashFunction">The hash function</param>
/// <returns>The new comparer</returns>
public static IEqualityComparer<T> Create<T>(Func<T?, T?, bool> equalityFunction, Func<T, int> hashFunction) =>
new ProjectionEqualityComparerImpl<T>(equalityFunction, hashFunction);
/// <summary>
/// Creates a new instance of an equality comparer using the provided functions
/// </summary>
/// <param name="equalityFunction">The equality function</param>
/// <param name="hashFunction">The hash function</param>
private sealed class ProjectionEqualityComparerImpl<T>(
Func<T?, T?, bool> equalityFunction,
Func<T, int> hashFunction
) : EqualityComparer<T>
{
/// <inheritdoc/>
public override bool Equals(T? x, T? y) => equalityFunction(x, y);
/// <inheritdoc/>
public override int GetHashCode(T obj) => hashFunction(obj);
}
}