EncodeArrayValue 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)
| 2651 | // EncodeArrayValue encodes a byte array value with its value tag, appends it to |
| 2652 | // the supplied buffer, and returns the final buffer. |
| 2653 | func EncodeArrayValue(appendTo []byte, colIDDelta uint32, data []byte) []byte { |
| 2654 | appendTo = EncodeValueTag(appendTo, colIDDelta, Array) |
| 2655 | return EncodeUntaggedBytesValue(appendTo, data) |
| 2656 | } |
| 2657 | |
| 2658 | // EncodeTimeValue encodes a time.Time value with its value tag, appends it to |
| 2659 | // the supplied buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…