EncodeNullValue encodes a null value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32)
| 2582 | // EncodeNullValue encodes a null value, appends it to the supplied buffer, and |
| 2583 | // returns the final buffer. |
| 2584 | func EncodeNullValue(appendTo []byte, colIDDelta uint32) []byte { |
| 2585 | return EncodeValueTag(appendTo, colIDDelta, Null) |
| 2586 | } |
| 2587 | |
| 2588 | // EncodeNotNullValue encodes a not null value, appends it to the supplied |
| 2589 | // buffer, and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…