EncodeNullAscending encodes a NULL value. The encodes bytes are appended to the supplied buffer and the final buffer is returned. The encoded value for a NULL is guaranteed to not be a prefix for the EncodeVarint, EncodeFloat, EncodeBytes and EncodeString encodings.
(b []byte)
| 786 | // NULL is guaranteed to not be a prefix for the EncodeVarint, EncodeFloat, |
| 787 | // EncodeBytes and EncodeString encodings. |
| 788 | func EncodeNullAscending(b []byte) []byte { |
| 789 | return append(b, encodedNull) |
| 790 | } |
| 791 | |
| 792 | // EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the |
| 793 | // supplied buffer and the final buffer is returned. |
no outgoing calls
no test coverage detected
searching dependent graphs…