EncodeArrayValue encodes a byte array value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, data []byte)
| 1889 | // EncodeArrayValue encodes a byte array value with its value tag, appends it to |
| 1890 | // the supplied buffer, and returns the final buffer. |
| 1891 | func EncodeArrayValue(appendTo []byte, colID uint32, data []byte) []byte { |
| 1892 | appendTo = EncodeValueTag(appendTo, colID, Array) |
| 1893 | return EncodeUntaggedBytesValue(appendTo, data) |
| 1894 | } |
| 1895 | |
| 1896 | // EncodeTimeValue encodes a time.Time value with its value tag, appends it to |
| 1897 | // the supplied buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…