EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes.
(b []byte)
| 814 | |
| 815 | // EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes. |
| 816 | func EncodeTrueAscending(b []byte) []byte { |
| 817 | return append(b, byte(True)) |
| 818 | } |
| 819 | |
| 820 | // EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes. |
| 821 | func EncodeFalseAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…