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)
| 1030 | // NULL is guaranteed to not be a prefix for the EncodeVarint, EncodeFloat, |
| 1031 | // EncodeBytes and EncodeString encodings. |
| 1032 | func EncodeNullAscending(b []byte) []byte { |
| 1033 | return append(b, encodedNull) |
| 1034 | } |
| 1035 | |
| 1036 | // EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the |
| 1037 | // supplied buffer and the final buffer is returned. |
no outgoing calls
no test coverage detected
searching dependent graphs…