EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, i int64)
| 1854 | // EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and |
| 1855 | // returns the final buffer. |
| 1856 | func EncodeUntaggedIntValue(appendTo []byte, i int64) []byte { |
| 1857 | return EncodeNonsortingStdlibVarint(appendTo, i) |
| 1858 | } |
| 1859 | |
| 1860 | const floatValueEncodedLength = uint64AscendingEncodedLength |
| 1861 |
no test coverage detected
searching dependent graphs…