Subtract the qspan matched positions from the query matchable positions.
(self, qspan)
| 326 | yield qr, spdx_text |
| 327 | |
| 328 | def subtract(self, qspan): |
| 329 | """ |
| 330 | Subtract the qspan matched positions from the query matchable positions. |
| 331 | """ |
| 332 | if qspan: |
| 333 | self.high_matchables.difference_update(qspan) |
| 334 | self.low_matchables.difference_update(qspan) |
| 335 | |
| 336 | @property |
| 337 | def matchables(self): |
no outgoing calls
no test coverage detected