Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
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>
8uint64 AppendCityHash(const T& Value, uint64 Seed)
9{
10 return CityHash64WithSeed((const char*)&Value, sizeof(Value), Seed);
11}
uint64 AppendCityHash(const T &Value, uint64 Seed)