| 105 | |
| 106 | template <class TOutput> |
| 107 | Y_FORCE_INLINE int WriteVarInt32Impl(TOutput output, i32 value) |
| 108 | { |
| 109 | return WriteVarUint64(output, ZigZagEncode32(value)); |
| 110 | } |
| 111 | |
| 112 | template <class TOutput> |
| 113 | Y_FORCE_INLINE int WriteVarInt64Impl(TOutput output, i64 value) |
no test coverage detected