File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
HashifyNet/Algorithms/BuzHash Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ public class BuzHashConfig
4040 : IBuzHashConfig
4141 {
4242 /// <summary>
43- /// Gets a list of <c>256</c> (preferably random and distinct) <see cref="UInt64 "/> values.
43+ /// Gets a list of <c>256</c> (preferably random and distinct) <see cref="ulong "/> values.
4444 /// </summary>
4545 /// <value>
46- /// List of 256 <see cref="UInt64 "/> values.
46+ /// List of 256 <see cref="ulong "/> values.
4747 /// </value>
48- public IReadOnlyList < UInt64 > Rtab { get ; set ; } = null ;
48+ public IReadOnlyList < ulong > Rtab { get ; set ; } = null ;
4949
5050 /// <summary>
5151 /// Gets the desired hash size, in bits.
@@ -67,7 +67,7 @@ public class BuzHashConfig
6767 /// <remarks>
6868 /// Defaults to <c>0UL</c>
6969 /// </remarks>
70- public UInt64 Seed { get ; set ; } = 0UL ;
70+ public ulong Seed { get ; set ; } = 0UL ;
7171
7272 /// <summary>
7373 /// Gets the shift direction.
@@ -93,4 +93,4 @@ public IBuzHashConfig Clone() =>
9393 ShiftDirection = ShiftDirection
9494 } ;
9595 }
96- }
96+ }
You can’t perform that action at this time.
0 commit comments