cesium-native 0.55.0
Loading...
Searching...
No Matches
Hash.h
1#pragma once
2
3#include <cstddef>
4#include <cstdint>
5
6namespace CesiumUtility {
7
12struct Hash {
21 static size_t combine(size_t first, size_t second);
22};
23
24} // namespace CesiumUtility
Utility classes for Cesium.
Contains functions for working with hashes.
Definition Hash.h:12
static size_t combine(size_t first, size_t second)
Combines two hash values, usually generated using std::hash, to form a single hash value.