EncodeBitArrayValue encodes a bit array value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, d bitarray.BitArray)
| 1963 | // EncodeBitArrayValue encodes a bit array value with its value tag, |
| 1964 | // appends it to the supplied buffer, and returns the final buffer. |
| 1965 | func EncodeBitArrayValue(appendTo []byte, colID uint32, d bitarray.BitArray) []byte { |
| 1966 | appendTo = EncodeValueTag(appendTo, colID, BitArray) |
| 1967 | return EncodeUntaggedBitArrayValue(appendTo, d) |
| 1968 | } |
| 1969 | |
| 1970 | // EncodeUntaggedBitArrayValue encodes a bit array value, appends it to the |
| 1971 | // supplied buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…