EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the supplied buffer and the final buffer is returned.
(b []byte)
| 521 | // EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the |
| 522 | // supplied buffer and the final buffer is returned. |
| 523 | func EncodeJSONAscending(b []byte) []byte { |
| 524 | return append(b, jsonInvertedIndex) |
| 525 | } |
| 526 | |
| 527 | // EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects. |
| 528 | func EncodeArrayAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected