intersect method

intersect

Intersects another range.

def intersect(self, range):
    ...
ParameterTypeDescription
rangestrThe range.

Remarks

If the two union ranges are not intersected, returns null.

intersect

Intersects another range.

def intersect(self, union_range):
    ...
ParameterTypeDescription
union_rangeUnionRangeThe range.

Remarks

If the two union ranges are not intersected, returns null.

intersect

Intersects another range.

def intersect(self, ranges):
    ...
ParameterTypeDescription
rangeslistThe range.

Remarks

If the two union ranges are not intersected, returns null.

See Also