EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the supplied buffer and the final buffer is returned.
(b []byte)
| 792 | // EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the |
| 793 | // supplied buffer and the final buffer is returned. |
| 794 | func EncodeJSONAscending(b []byte) []byte { |
| 795 | return append(b, jsonInvertedIndex) |
| 796 | } |
| 797 | |
| 798 | // EncodeNullDescending is the descending equivalent of EncodeNullAscending. |
| 799 | func EncodeNullDescending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…