EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the supplied buffer and the final buffer is returned.
(b []byte)
| 1036 | // EncodeJSONAscending encodes a JSON Type. The encoded bytes are appended to the |
| 1037 | // supplied buffer and the final buffer is returned. |
| 1038 | func EncodeJSONAscending(b []byte) []byte { |
| 1039 | return append(b, jsonInvertedIndex) |
| 1040 | } |
| 1041 | |
| 1042 | // Geo inverted keys are formatted as: |
| 1043 | // geoInvertedIndexMarker + EncodeUvarintAscending(cellid) + encoded-bbox |
no outgoing calls
no test coverage detected
searching dependent graphs…