Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
uint32 UE::HashStringFNV1a32
(
TStringView< CharType > String |
Creates a 32-bit FNV1a hash for the given string. | Hash/Fnv.h | |
uint32 UE::HashStringFNV1a32
(
const CharType(&) StringLiteral |
Hash/Fnv.h |
UE::HashStringFNV1a32(TStringView< CharType >)
Description
Creates a 32-bit FNV1a hash for the given string.
| Name | UE::HashStringFNV1a32 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Hash/Fnv.h |
| Include Path | #include "Hash/Fnv.h" |
namespace UE
{
template<typename CharType>
uint32 UE::HashStringFNV1a32
(
TStringView < CharType > String
)
}
UE::HashStringFNV1a32(const CharType(&))
| Name | UE::HashStringFNV1a32 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Hash/Fnv.h |
| Include Path | #include "Hash/Fnv.h" |
namespace UE
{
template<typename CharType, int32 Len>
uint32 UE::HashStringFNV1a32
(
const CharType(&) StringLiteral
)
}