(b []byte)
| 694 | return [][]byte{encoding.EncodeNullAscending(b)}, nil |
| 695 | } |
| 696 | func (jsonTrue) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 697 | b = encoding.AddJSONPathTerminator(b) |
| 698 | return [][]byte{encoding.EncodeTrueAscending(b)}, nil |
| 699 | } |
| 700 | func (jsonFalse) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 701 | b = encoding.AddJSONPathTerminator(b) |
| 702 | return [][]byte{encoding.EncodeFalseAscending(b)}, nil |
nothing calls this directly
no test coverage detected