tmp/tmp5ldxp6ah/{from.md → to.md}
RENAMED
|
@@ -3,15 +3,10 @@
|
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
// [complex], class template complex
|
| 6 |
template<class T> class complex;
|
| 7 |
|
| 8 |
-
// [complex.special], specializations
|
| 9 |
-
template<> class complex<float>;
|
| 10 |
-
template<> class complex<double>;
|
| 11 |
-
template<> class complex<long double>;
|
| 12 |
-
|
| 13 |
// [complex.ops], operators
|
| 14 |
template<class T> constexpr complex<T> operator+(const complex<T>&, const complex<T>&);
|
| 15 |
template<class T> constexpr complex<T> operator+(const complex<T>&, const T&);
|
| 16 |
template<class T> constexpr complex<T> operator+(const T&, const complex<T>&);
|
| 17 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
// [complex], class template complex
|
| 6 |
template<class T> class complex;
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
// [complex.ops], operators
|
| 9 |
template<class T> constexpr complex<T> operator+(const complex<T>&, const complex<T>&);
|
| 10 |
template<class T> constexpr complex<T> operator+(const complex<T>&, const T&);
|
| 11 |
template<class T> constexpr complex<T> operator+(const T&, const complex<T>&);
|
| 12 |
|