EncodeIntValue encodes an int value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, i int64)
| 1847 | // EncodeIntValue encodes an int value with its value tag, appends it to the |
| 1848 | // supplied buffer, and returns the final buffer. |
| 1849 | func EncodeIntValue(appendTo []byte, colID uint32, i int64) []byte { |
| 1850 | appendTo = EncodeValueTag(appendTo, colID, Int) |
| 1851 | return EncodeUntaggedIntValue(appendTo, i) |
| 1852 | } |
| 1853 | |
| 1854 | // EncodeUntaggedIntValue encodes an int value, appends it to the supplied buffer, and |
| 1855 | // returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…