Match only documents where the query terms appear in the same order in the document. i.e., for the query "hello world", we do not match "world hello"
(self)
| 166 | return self |
| 167 | |
| 168 | def in_order(self) -> "Query": |
| 169 | """ |
| 170 | Match only documents where the query terms appear in |
| 171 | the same order in the document. |
| 172 | i.e., for the query "hello world", we do not match "world hello" |
| 173 | """ |
| 174 | self._in_order = True |
| 175 | return self |
| 176 | |
| 177 | def scorer(self, scorer: str) -> "Query": |
| 178 | """ |
no outgoing calls