Skip to content

Commit 3984b0c

Browse files
authored
Rename UInt64 to ulong
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent e23f51a commit 3984b0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

HashifyNet/Algorithms/BuzHash/BuzHashConfig.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)