Lines Matching refs:other
30 ScalarWithExceptions(const ScalarWithExceptions& other) { init(); *v = *(other.v); }
41 ScalarWithExceptions operator+(const ScalarWithExceptions& other) const
46 return ScalarWithExceptions(*v+*other.v);
49 ScalarWithExceptions operator-(const ScalarWithExceptions& other) const
50 { return ScalarWithExceptions(*v-*other.v); }
52 ScalarWithExceptions operator*(const ScalarWithExceptions& other) const
53 { return ScalarWithExceptions((*v)*(*other.v)); }
55 ScalarWithExceptions& operator+=(const ScalarWithExceptions& other)
56 { *v+=*other.v; return *this; }
57 ScalarWithExceptions& operator-=(const ScalarWithExceptions& other)
58 { *v-=*other.v; return *this; }
59 ScalarWithExceptions& operator=(const ScalarWithExceptions& other)
60 { *v = *(other.v); return *this; }
62 bool operator==(const ScalarWithExceptions& other) const
63 { return *v==*other.v; }
64 bool operator!=(const ScalarWithExceptions& other) const
65 { return *v!=*other.v; }