Lines Matching refs:other
44 def __eq__(self, other): argument
45 return self.range_data == other.range_data
47 def __ne__(self, other): argument
48 return self.range_data != other.range_data
101 def get_union_with_other(self, other): argument
105 range_a = self.get_subtract_with_other(other)
106 range_b = other.get_subtract_with_other(self)
107 range_c = self.get_intersect_with_other(other)
118 def get_intersect_with_other(self, other): argument
123 other.range_data), []
139 def get_subtract_with_other(self, other): argument
143 intersect_ran = self.get_intersect_with_other(other)
150 def is_overlaps(self, other): argument
154 intersect_range = self.get_intersect_with_other(other)
169 def get_map_within(self, other): argument
181 zip(other.range_data, itertools.cycle((-1, +1)))):