Returns all intervals that overlap the point_list.
(self, point_list)
| 298 | return self |
| 299 | |
| 300 | def search_overlap(self, point_list): |
| 301 | """ |
| 302 | Returns all intervals that overlap the point_list. |
| 303 | """ |
| 304 | result = set() |
| 305 | for j in point_list: |
| 306 | self.search_point(j, result) |
| 307 | return result |
| 308 | |
| 309 | def search_point(self, point, result): |
| 310 | """ |
no test coverage detected