File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,18 @@ explicit constexpr operator decimal128_t() const noexcept;
117117
118118== Operator Behavior
119119
120- === Construction from binary floating-point type
120+ === Construction to and from binary floating-point type
121121
122122[source, c++]
123123----
124124// 3.2.2.2 Conversion from floating-point type
125125template <typename Float>
126126explicit BOOST_DECIMAL_CXX20_CONSTEXPR decimal32_t(Float val) noexcept;
127+
128+ // 3.2.6 Conversion to floating-point type
129+ explicit BOOST_DECIMAL_CXX20_CONSTEXPR operator float() const noexcept;
130+ explicit BOOST_DECIMAL_CXX20_CONSTEXPR operator double() const noexcept;
131+ explicit BOOST_DECIMAL_CXX20_CONSTEXPR operator long double() const noexcept;
127132----
128133
129134See: xref:binary_floating_conversions.adoc[]
You can’t perform that action at this time.
0 commit comments