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

Function isNull

pdal/util/Uuid.hpp:219–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217 { return isNull(); }
218
219 bool isNull() const
220 {
221 const char *c = (const char *)&m_data;
222 for (size_t i = 0; i < sizeof(m_data); ++i)
223 if (*c++ != 0)
224 return false;
225 return true;
226 }
227
228 static constexpr size_t size()
229 { return sizeof(m_data); }

Callers 1

emptyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected