EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes.
(b []byte)
| 1158 | |
| 1159 | // EncodeTrueAscending encodes the boolean value true for use with JSON inverted indexes. |
| 1160 | func EncodeTrueAscending(b []byte) []byte { |
| 1161 | return append(b, byte(True)) |
| 1162 | } |
| 1163 | |
| 1164 | // EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes. |
| 1165 | func EncodeFalseAscending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…