EncodeBytesValue 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)
| 1875 | // EncodeBytesValue encodes a byte array value with its value tag, appends it to |
| 1876 | // the supplied buffer, and returns the final buffer. |
| 1877 | func EncodeBytesValue(appendTo []byte, colID uint32, data []byte) []byte { |
| 1878 | appendTo = EncodeValueTag(appendTo, colID, Bytes) |
| 1879 | return EncodeUntaggedBytesValue(appendTo, data) |
| 1880 | } |
| 1881 | |
| 1882 | // EncodeUntaggedBytesValue encodes a byte array value, appends it to the supplied |
| 1883 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…