MCPcopy Create free account
hub / github.com/comaps/comaps / Read

Method Read

libs/coding/reader.hpp:155–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153 NonOwningReaderSource(Reader const & reader, uint64_t pos, uint64_t end) : m_reader(reader), m_pos(pos), m_end(end) {}
154
155 void Read(void * p, size_t size)
156 {
157 m_reader.Read(m_pos, p, size);
158 m_pos += size;
159 CheckPosition();
160 }
161
162 void Skip(uint64_t size)
163 {

Callers

nothing calls this directly

Calls 1

ReadMethod · 0.45

Tested by

no test coverage detected