EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes.
(b []byte)
| 819 | |
| 820 | // EncodeFalseAscending encodes the boolean value false for use with JSON inverted indexes. |
| 821 | func EncodeFalseAscending(b []byte) []byte { |
| 822 | return append(b, byte(False)) |
| 823 | } |
| 824 | |
| 825 | // EncodeNotNullDescending is the descending equivalent of EncodeNotNullAscending. |
| 826 | func EncodeNotNullDescending(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…