|
| complex | operator- (const complex &) |
| |
| complex | operator+ (const complex &, const complex &) |
| |
| complex | operator+ (const complex &, const scalar) |
| |
| complex | operator+ (const scalar, const complex &) |
| |
| complex | operator- (const complex &, const complex &) |
| |
| complex | operator- (const complex &, const scalar) |
| |
| complex | operator- (const scalar, const complex &) |
| |
| complex | operator* (const complex &, const complex &) |
| |
| complex | operator* (const complex &, const scalar) |
| |
| complex | operator* (const scalar, const complex &) |
| |
| complex | operator/ (const complex &, const complex &) |
| |
| complex | operator/ (const complex &, const scalar) |
| |
| complex | operator/ (const scalar, const complex &) |
| |
| template<class T > |
| std::enable_if< !std::is_same< complex, T >::value, const T &>::type | conj (const T &val) |
| | The 'conjugate' of non-complex returns itself (pass-through) it does not return a complex! More...
|
| |
| template<class T > |
| std::enable_if< std::is_same< complex, T >::value, complex >::type | conj (const T &val) |
| | The conjugate of a complex number. More...
|
| |
| Istream & | operator>> (Istream &is, complex &c) |
| |
| Ostream & | operator<< (Ostream &os, const complex &c) |
| |
| complex | operator~ (const complex &c) |
| | Complex conjugate. More...
|
| |
| word | name (const complex &c) |
| | Return string representation of complex. More...
|
| |
Original source file complex.H
Definition in file complex.H.