EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes.
(b []byte)
| 1163 | |
| 1164 | // EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes. |
| 1165 | func EncodeFalseAscending(b []byte) []byte { |
| 1166 | return append(b, byte(False)) |
| 1167 | } |
| 1168 | |
| 1169 | // EncodeNotNullDescending is the descending equivalent of EncodeNotNullAscending. |
| 1170 | func EncodeNotNullDescending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…