EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, i int64)
| 2610 | // EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and |
| 2611 | // returns the final buffer. |
| 2612 | func EncodeUntaggedIntValue(appendTo []byte, i int64) []byte { |
| 2613 | return EncodeNonsortingStdlibVarint(appendTo, i) |
| 2614 | } |
| 2615 | |
| 2616 | const floatValueEncodedLength = uint64AscendingEncodedLength |
| 2617 |
no test coverage detected
searching dependent graphs…