aboutsummaryrefslogtreecommitdiff
path: root/src/Spv.Generator/DeterministicStringKey.cs
blob: 7ed14c33c3f0f89270cacaab4a1d649cca95ba81 (plain) (blame)
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
using System;

namespace Spv.Generator
{
    internal class DeterministicStringKey : IEquatable<DeterministicStringKey>
    {
        private readonly string _value;

        public DeterministicStringKey(string value)
        {
            _value = value;
        }

        public override int GetHashCode()
        {
            return DeterministicHashCode.GetHashCode(_value);
        }

        public bool Equals(DeterministicStringKey other)
        {
            return _value == other?._value;
        }

        public override bool Equals(object obj)
        {
            return obj is DeterministicStringKey key && Equals(key);
        }
    }
}