| 273 | |
| 274 | template <typename F> |
| 275 | void const * ReadVarUint64Array(void const * pBeg, void const * pEnd, F f) |
| 276 | { |
| 277 | return ::impl::ReadVarInt64Array(pBeg, ::impl::ReadVarInt64ArrayUntilBufferEnd(pEnd), f, base::IdFunctor()); |
| 278 | } |
| 279 | |
| 280 | template <typename F> |
| 281 | void const * ReadVarInt64Array(void const * pBeg, size_t count, F f) |
no test coverage detected