(b []byte)
| 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 |
| 703 | } |
| 704 | func (j jsonString) encodeInvertedIndexKeys(b []byte) ([][]byte, error) { |
| 705 | b = encoding.AddJSONPathTerminator(b) |
| 706 | return [][]byte{encoding.EncodeStringAscending(b, string(j))}, nil |
nothing calls this directly
no test coverage detected