EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects.
(b []byte)
| 526 | |
| 527 | // EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects. |
| 528 | func EncodeArrayAscending(b []byte) []byte { |
| 529 | return append(b, escape, escapedJSONArray) |
| 530 | } |
| 531 | |
| 532 | // EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes. |
| 533 | func EncodeTrueAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected