Searched refs:xcomplex (Results 1 – 1 of 1) sorted by relevance
390 class xcomplex(complex): class392 return xcomplex(complex(self) + other)396 return xcomplex(complex(self) + other)400 return xcomplex(complex(self) * other)404 return xcomplex(complex(self) / other)407 return xcomplex(other / complex(self))413 return xcomplex(complex(self) // other)416 return xcomplex(other // complex(self))419 return xcomplex(complex(self) ** other)422 return xcomplex(other ** complex(self) )[all …]