EncodeBitArrayValue encodes a bit array value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, d bitarray.BitArray)
| 2765 | // EncodeBitArrayValue encodes a bit array value with its value tag, |
| 2766 | // appends it to the supplied buffer, and returns the final buffer. |
| 2767 | func EncodeBitArrayValue(appendTo []byte, colIDDelta uint32, d bitarray.BitArray) []byte { |
| 2768 | appendTo = EncodeValueTag(appendTo, colIDDelta, BitArray) |
| 2769 | return EncodeUntaggedBitArrayValue(appendTo, d) |
| 2770 | } |
| 2771 | |
| 2772 | // EncodeUntaggedBitArrayValue encodes a bit array value, appends it to the |
| 2773 | // supplied buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…