UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
CityHashHelpers.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CityHash.h"
6
7template<typename T>
9{
10 return CityHash64WithSeed((const char*)&Value, sizeof(Value), Seed);
11}
uint64 AppendCityHash(const T &Value, uint64 Seed)
Definition CityHashHelpers.h:8
uint64 CityHash64WithSeed(const char *s, uint32 len, uint64 seed)
Definition CityHash.cpp:430
FPlatformTypes::uint64 uint64
A 64-bit unsigned integer.
Definition Platform.h:1117