blob: 9b1aa278545a872ccdd4d400ffefdf2313284c34 [file] [log] [blame]
Brian Silvermanf83c99f2018-08-04 23:36:58 -07001// Copyright 2013-2017 Antony Polukhin
2
3// Distributed under the Boost Software License, Version 1.0.
4// (See the accompanying file LICENSE_1_0.txt
5// or a copy at <http://www.boost.org/LICENSE_1_0.txt>.)
6
7
8//[lexical_cast_variant_to_long_double
9/*`
10 In this example we'll make a `to_long_double` method that converts value of the Boost.Variant to `long double`.
11*/
12
13#include <boost/lexical_cast.hpp>
14#include <boost/variant.hpp>
15#include <cassert>
16
17struct to_long_double_functor: boost::static_visitor<long double> {
18 template <class T>
19 long double operator()(const T& v) const {
20 // Lexical cast has many optimizations including optimizations for situations that usually
21 // occur in generic programming, like std::string to std::string or arithmetic type to arithmetic type conversion.
22 return boost::lexical_cast<long double>(v);
23 }
24};
25
26// Throws `boost::bad_lexical_cast` if value of the variant is not convertible to `long double`
27template <class Variant>
28long double to_long_double(const Variant& v) {
29 return boost::apply_visitor(to_long_double_functor(), v);
30}
31
32int main() {
33 boost::variant<char, int, std::string> v1('0'), v2("10.0001"), v3(1);
34
35 const long double sum = to_long_double(v1) + to_long_double(v2) + to_long_double(v3);
36 const int ret = (sum > 11 && sum < 11.1 ? 0 : 1);
37 assert(ret == 0);
38 return ret;
39}
40
41//] [/lexical_cast_variant_to_long_double]