EncodeBytesValue encodes a byte array value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, data []byte)
| 2637 | // EncodeBytesValue encodes a byte array value with its value tag, appends it to |
| 2638 | // the supplied buffer, and returns the final buffer. |
| 2639 | func EncodeBytesValue(appendTo []byte, colIDDelta uint32, data []byte) []byte { |
| 2640 | appendTo = EncodeValueTag(appendTo, colIDDelta, Bytes) |
| 2641 | return EncodeUntaggedBytesValue(appendTo, data) |
| 2642 | } |
| 2643 | |
| 2644 | // EncodeUntaggedBytesValue encodes a byte array value, appends it to the supplied |
| 2645 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…