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