MCPcopy Create free account
hub / github.com/PDAL/PDAL / pack

Function pack

pdal/util/Uuid.hpp:152–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150 }
151
152 void pack(char *c) const
153 {
154 BeInserter i(c, 10);
155
156 i << m_data.time_low << m_data.time_mid <<
157 m_data.time_hi_and_version << m_data.clock_seq;
158 c += 10;
159 std::copy(m_data.node, m_data.node + 6, c);
160 }
161
162 bool parse(const std::string& s)
163 {

Callers

nothing calls this directly

Calls 1

copyFunction · 0.85

Tested by

no test coverage detected