123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef BOOST_CHARCONV_DETAIL_FASTFLOAT_FAST_FLOAT_HPP
- #define BOOST_CHARCONV_DETAIL_FASTFLOAT_FAST_FLOAT_HPP
- #include <boost/charconv/detail/fast_float/float_common.hpp>
- namespace boost { namespace charconv { namespace detail { namespace fast_float {
- template<typename T, typename UC = char>
- BOOST_CHARCONV_FASTFLOAT_CONSTEXPR20
- from_chars_result_t<UC> from_chars(UC const * first, UC const * last,
- T &value, chars_format fmt = chars_format::general) noexcept;
- template<typename T, typename UC = char>
- BOOST_CHARCONV_FASTFLOAT_CONSTEXPR20
- from_chars_result_t<UC> from_chars_advanced(UC const * first, UC const * last,
- T &value, parse_options_t<UC> options) noexcept;
- }}}}
- #include <boost/charconv/detail/fast_float/parse_number.hpp>
- #endif
|