Lines Matching refs:data
39 def __init__(self, data):
40 self.data = data
43 return len(self.data)
46 return self.data[i]
49 self.data[i] = v
60 return "Vector(%r)" % (self.data, )
63 return Vector([a < b for a, b in zip(self.data, self.__cast(other))])
66 return Vector([a <= b for a, b in zip(self.data, self.__cast(other))])
69 return Vector([a == b for a, b in zip(self.data, self.__cast(other))])
72 return Vector([a != b for a, b in zip(self.data, self.__cast(other))])
75 return Vector([a > b for a, b in zip(self.data, self.__cast(other))])
78 return Vector([a >= b for a, b in zip(self.data, self.__cast(other))])
82 other = other.data
83 if len(self.data) != len(other):