Return True if the all the matched tokens of this match are continuous without any extra unmatched known or unkwown words, or stopwords.
(self)
| 527 | return qmagnitude |
| 528 | |
| 529 | def is_continuous(self): |
| 530 | """ |
| 531 | Return True if the all the matched tokens of this match are continuous |
| 532 | without any extra unmatched known or unkwown words, or stopwords. |
| 533 | """ |
| 534 | return ( |
| 535 | self.len() == self.qregion_len() == self.qmagnitude() |
| 536 | ) |
| 537 | |
| 538 | def qregion(self): |
| 539 | """ |
no test coverage detected