Return the union of this span with other spans as a new span. (i.e. all positions that are in either spans.)
(self, *others)
| 141 | return Span(self._set.union(*[o._set for o in others])) |
| 142 | |
| 143 | def union(self, *others): |
| 144 | """ |
| 145 | Return the union of this span with other spans as a new span. |
| 146 | (i.e. all positions that are in either spans.) |
| 147 | """ |
| 148 | return self.__or__(*others) |
| 149 | |
| 150 | def difference(self, *others): |
| 151 | """ |
no test coverage detected