HelenOS sources

imag               55 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
imag              195 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
imag              335 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
imag              475 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
imag              683 uspace/lib/cpp/include/__bits/complex.hpp         return complex<T>{-c.real(), -c.imag()};
imag              689 uspace/lib/cpp/include/__bits/complex.hpp         return lhs.real() == rhs.real() && lhs.imag() == rhs.imag();
imag              695 uspace/lib/cpp/include/__bits/complex.hpp         return lhs.real() == rhs && lhs.imag() == T{};
imag              701 uspace/lib/cpp/include/__bits/complex.hpp         return lhs == rhs.real() && T{} == rhs.imag();
imag              707 uspace/lib/cpp/include/__bits/complex.hpp         return lhs.real() != rhs.real() || lhs.imag() != rhs.imag();
imag              713 uspace/lib/cpp/include/__bits/complex.hpp         return lhs.real() != rhs || lhs.imag() != T{};
imag              719 uspace/lib/cpp/include/__bits/complex.hpp         return lhs != rhs.real() || T{} != rhs.imag();
imag              740 uspace/lib/cpp/include/__bits/complex.hpp         oss << "(" << c.real() << "," << c.imag() << ")";
imag              758 uspace/lib/cpp/include/__bits/complex.hpp         return c.imag();
imag              764 uspace/lib/cpp/include/__bits/complex.hpp         return c.real() * c.real() + c.imag() * c.imag();
imag              159 uspace/lib/cpp/src/__bits/test/numeric.cpp         test_eq("complex literals pt2", c1.imag(), 2.5f);
imag              177 uspace/lib/cpp/src/__bits/test/numeric.cpp         test_eq("complex imag", std::imag(2.0 + 3.0i), 3.0);
HelenOS homepage, sources at GitHub