EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects.
(b []byte)
| 809 | |
| 810 | // EncodeArrayAscending encodes a value used to signify membership of an array for JSON objects. |
| 811 | func EncodeArrayAscending(b []byte) []byte { |
| 812 | return append(b, escape, escapedJSONArray) |
| 813 | } |
| 814 | |
| 815 | // EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes. |
| 816 | func EncodeTrueAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…