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

Class ReadVarInt64ArrayGivenSize

libs/coding/varint.hpp:217–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215};
216
217class ReadVarInt64ArrayGivenSize
218{
219public:
220 explicit ReadVarInt64ArrayGivenSize(size_t const count) : m_Remaining(count) {}
221 bool Continue(void const *) const { return m_Remaining > 0; }
222 void NextVarInt() { --m_Remaining; }
223
224private:
225 size_t m_Remaining;
226};
227
228template <typename ConverterT, typename F, class WhileConditionT>
229void const * ReadVarInt64Array(void const * pBeg, WhileConditionT whileCondition, F f, ConverterT converter)

Callers 2

ReadVarInt64ArrayFunction · 0.85
ReadVarUint64ArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected