Lines Matching refs:cpp_complex
107 [def __cpp_complex [link boost_multiprecision.tut.complex.cpp_complex cpp_complex]]
112 [def __cpp_complex [link boost_multiprecision.tut.complex.cpp_complex cpp_complex]]
1397 [[`cpp_complex`][boost/multiprecision/cpp_complex.hpp][2][None][An all C++ Boost-licensed implement…
1403 [section:cpp_complex cpp_complex]
1405 `#include <boost/multiprecision/cpp_complex.hpp>`
1413 …using cpp_complex = number<complex_adaptor<cpp_bin_float<Digits, DigitBase, Allocator, Exponent, M…
1415 typedef cpp_complex<50> cpp_complex_50;
1416 typedef cpp_complex<100> cpp_complex_100;
1418 …typedef cpp_complex<24, backends::digit_base_2, void, boost::int16_t, -126, 127> cpp_complex_singl…
1419 …typedef cpp_complex<53, backends::digit_base_2, void, boost::int16_t, -1022, 1023> cpp_complex_dou…
1420 …typedef cpp_complex<64, backends::digit_base_2, void, boost::int16_t, -16382, 16383> cpp_complex_e…
1421 …typedef cpp_complex<113, backends::digit_base_2, void, boost::int16_t, -16382, 16383> cpp_complex_…
1422 …typedef cpp_complex<237, backends::digit_base_2, void, boost::int32_t, -262142, 262143> cpp_comple…
1430 The template alias `cpp_complex` avoids the need to use class `number` directly.
1432 Type `cpp_complex` can be used at fixed precision by specifying a non-zero `Digits` template parame…
1437 to declare a `cpp_complex` with exactly the same precision as `std::complex<double>` one would use
1438 `cpp_complex<53, digit_base_2>`. The typedefs `cpp_complex_single`, `cpp_complex_double`,
1444 Normally `cpp_complex` allocates no memory: all of the space required for its digits are allocated
1447 as a template parameter causes `cpp_complex` to dynamically allocate the memory it needs: this
1448 significantly reduces the size of `cpp_complex` and increases the viable upper limit on the number …
1453 `cpp_complex<1000, digit_base_10, std::allocator<char> >`.
1470 * Default constructed `cpp_complex`s have a value of zero.
1477 for example you can convert from `number<cpp_complex<50> >` to `number<cpp_bin_float<SomeOtherValue…