Return the coverage of this match to the matched rule as a rounded float between 0 and 100.
(self)
| 479 | return self.len() / self.rule.length |
| 480 | |
| 481 | def coverage(self): |
| 482 | """ |
| 483 | Return the coverage of this match to the matched rule as a rounded float |
| 484 | between 0 and 100. |
| 485 | """ |
| 486 | return round(self._icoverage() * 100, 2) |
| 487 | |
| 488 | def qmagnitude(self): |
| 489 | """ |