EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects.
(b []byte)
| 1153 | |
| 1154 | // EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects. |
| 1155 | func EncodeArrayAscending(b []byte) []byte { |
| 1156 | return append(b, escape, escapedJSONArray) |
| 1157 | } |
| 1158 | |
| 1159 | // EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes. |
| 1160 | func EncodeTrueAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…