MCPcopy Create free account
hub / github.com/ImageEngine/cortex / internalToString

Function internalToString

src/IECore/MurmurHash.cpp:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46{
47
48std::string internalToString( uint64_t const h1, uint64_t const h2 )
49{
50 std::stringstream s;
51 s << std::hex << std::setfill( '0' ) << std::setw( 16 ) << h1 << std::setw( 16 ) << h2;
52 return s.str();
53}
54
55void internalFromString( const std::string &repr, uint64_t &h1, uint64_t &h2 )
56{

Callers 1

toStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected