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 d0a3ce4 commit ef3cd53Copy full SHA for ef3cd53
HashifyNet/Algorithms/MurmurHash/MurmurHash2Config.cs
@@ -49,10 +49,10 @@ public class MurmurHash2Config
49
/// <value>
50
/// The seed.
51
/// </value>
52
- public ulong Seed { get; set; } = 0UL;
+ public long Seed { get; set; }
53
54
/// <summary>
55
- /// Makes a deep clone of current instance.
+ /// Makes a deep clone of the current instance.
56
/// </summary>
57
/// <returns>A deep clone of the current instance.</returns>
58
public IMurmurHash2Config Clone() =>
@@ -62,4 +62,4 @@ public IMurmurHash2Config Clone() =>
62
Seed = Seed
63
};
64
}
65
-}
+}
0 commit comments