a unary bool function with Complex argument
| 28 | namespace { |
| 29 | // a unary bool function with Complex argument |
| 30 | static bool IsReal(const Complex &x) |
| 31 | { return x.imag() == 0.; } |
| 32 | |
| 33 | // a binary bool function with Complex arguments |
| 34 | static bool AbsGeq(const Complex &x, const Complex &y) |