mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
#ifndef SPROUT_COMPLEX_UDL_HPP
|
|
#define SPROUT_COMPLEX_UDL_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/complex/complex.hpp>
|
|
|
|
#if SPROUT_USE_USER_DEFINED_LITERALS
|
|
|
|
namespace sprout {
|
|
namespace udl {
|
|
namespace complex {
|
|
//
|
|
// _i
|
|
//
|
|
inline SPROUT_CONSTEXPR sprout::complex<double>
|
|
operator"" _i(long double x) {
|
|
return sprout::complex<double>(0, x);
|
|
}
|
|
|
|
//
|
|
// _if
|
|
// _iF
|
|
//
|
|
inline SPROUT_CONSTEXPR sprout::complex<float>
|
|
operator"" _if(long double x) {
|
|
return sprout::complex<float>(0, x);
|
|
}
|
|
inline SPROUT_CONSTEXPR sprout::complex<float>
|
|
operator"" _iF(long double x) {
|
|
return sprout::complex<float>(0, x);
|
|
}
|
|
|
|
//
|
|
// _il
|
|
// _iL
|
|
//
|
|
inline SPROUT_CONSTEXPR sprout::complex<long double>
|
|
operator"" _il(long double x) {
|
|
return sprout::complex<long double>(0, x);
|
|
}
|
|
inline SPROUT_CONSTEXPR sprout::complex<long double>
|
|
operator"" _iL(long double x) {
|
|
return sprout::complex<long double>(0, x);
|
|
}
|
|
} // namespace complex
|
|
|
|
using sprout::udl::complex::operator"" _i;
|
|
using sprout::udl::complex::operator"" _if;
|
|
using sprout::udl::complex::operator"" _iF;
|
|
using sprout::udl::complex::operator"" _il;
|
|
using sprout::udl::complex::operator"" _iL;
|
|
} // namespace udl
|
|
|
|
using sprout::udl::complex::operator"" _i;
|
|
using sprout::udl::complex::operator"" _if;
|
|
using sprout::udl::complex::operator"" _iF;
|
|
using sprout::udl::complex::operator"" _il;
|
|
using sprout::udl::complex::operator"" _iL;
|
|
} // namespace sprout
|
|
|
|
#endif // #if SPROUT_USE_USER_DEFINED_LITERALS
|
|
|
|
#endif // #ifndef SPROUT_COMPLEX_UDL_HPP
|