Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
HashFunction()
[2/2]
static int System.Resources.FastResourceComparer.HashFunction
(
string
key
)
inline
static
package
Definition at line
14
of file
FastResourceComparer.cs
.
15
{
16
uint num = 5381
u
;
17
for
(
int
i = 0;
i
<
key
.Length;
i
++)
18
{
19
num = ((num << 5) + num) ^
key
[
i
];
20
}
21
return
(
int
)num;
22
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Text.RegularExpressions.ExceptionArgument.i
@ i
System.ExceptionArgument.key
@ key
References
System.key
.
System
Resources
FastResourceComparer
Generated by
1.10.0