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