MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / combine

Function combine

Source/external/json.hpp:5933–5937  ·  view source on GitHub ↗

boost::hash_combine

Source from the content-addressed store, hash-verified

5931
5932// boost::hash_combine
5933inline std::size_t combine(std::size_t seed, std::size_t h) noexcept
5934{
5935 seed ^= h + 0x9e3779b9 + (seed << 6U) + (seed >> 2U);
5936 return seed;
5937}
5938
5939/*!
5940@brief hash a JSON value

Callers 1

hashFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected