summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/StateTracking/Comparers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-10 12:06:29 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-10 12:06:29 -0400
commit235d67623de648499db521606e4b9033d35388e5 (patch)
treebae7a46e7de77270ff09d893e0187b4bc9e9a72f /src/SMAPI/Framework/StateTracking/Comparers
parente27ada0f6187cdfd90b2812ba61de1e2e4f4b12d (diff)
downloadSMAPI-235d67623de648499db521606e4b9033d35388e5.tar.gz
SMAPI-235d67623de648499db521606e4b9033d35388e5.tar.bz2
SMAPI-235d67623de648499db521606e4b9033d35388e5.zip
create watcher core (#310)
Diffstat (limited to 'src/SMAPI/Framework/StateTracking/Comparers')
-rw-r--r--src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs b/src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs
new file mode 100644
index 00000000..cc1d6553
--- /dev/null
+++ b/src/SMAPI/Framework/StateTracking/Comparers/GenericEqualsComparer.cs
@@ -0,0 +1,31 @@
+using System.Collections.Generic;
+using System.Runtime.CompilerServices;
+
+namespace StardewModdingAPI.Framework.StateTracking.Comparers
+{
+ /// <summary>Compares values using their <see cref="object.Equals(object)"/> method. This should only be used when <see cref="EquatableComparer{T}"/> won't work, since this doesn't validate whether they're comparable.</summary>
+ /// <typeparam name="T">The value type.</typeparam>
+ internal class GenericEqualsComparer<T> : IEqualityComparer<T>
+ {
+ /*********
+ ** Public methods
+ *********/
+ /// <summary>Determines whether the specified objects are equal.</summary>
+ /// <returns>true if the specified objects are equal; otherwise, false.</returns>
+ /// <param name="x">The first object to compare.</param>
+ /// <param name="y">The second object to compare.</param>
+ public bool Equals(T x, T y)
+ {
+ if (x == null)
+ return y == null;
+ return x.Equals(y);
+ }
+
+ /// <summary>Get a hash code for the specified object.</summary>
+ /// <param name="obj">The value.</param>
+ public int GetHashCode(T obj)
+ {
+ return RuntimeHelpers.GetHashCode(obj);
+ }
+ }
+}