Coverage Report

Created: 2025-06-13 06:26

/work/stage/include/boost/json/detail/parse_into.hpp
Line
Count
Source (jump to first uncovered line)
1
//
2
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
3
// Copyright (c) 2020 Krystian Stasiowski (sdkrystian@gmail.com)
4
//
5
// Distributed under the Boost Software License, Version 1.0. (See accompanying
6
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
//
8
// Official repository: https://github.com/boostorg/json
9
//
10
11
#ifndef BOOST_JSON_DETAIL_PARSE_INTO_HPP
12
#define BOOST_JSON_DETAIL_PARSE_INTO_HPP
13
14
#include <boost/json/detail/config.hpp>
15
16
#include <boost/json/error.hpp>
17
#include <boost/json/conversion.hpp>
18
#include <boost/describe/enum_from_string.hpp>
19
20
#include <vector>
21
22
/*
23
 * This file contains the majority of parse_into functionality, specifically
24
 * the implementation of dedicated handlers for different generic categories of
25
 * types.
26
 *
27
 * At the core of parse_into is the specialisation basic_parser<
28
 * detail::into_handler<T> >. detail::into_handler<T> is a handler for
29
 * basic_parser. It directly handles events on_comment_part and on_comment (by
30
 * ignoring them), on_document_begin (by enabling the nested dedicated
31
 * handler), and on_document_end (by disabling the nested handler).
32
 *
33
 * Every other event is handled by the nested handler, which has the type
34
 * get_handler< T, into_handler<T> >. The second parameter is the parent
35
 * handler (in this case, it's the top handler, into_handler<T>). The type is
36
 * actually an alias to class template converting_handler, which has a separate
37
 * specialisation for every conversion category from the list of generic
38
 * conversion categories (e.g. sequence_conversion_tag, tuple_conversion_tag,
39
 * etc.) Instantiations of the template store a pointer to the parent handler
40
 * and a pointer to the value T.
41
 *
42
 * The nested handler handles specific parser events by setting error_code to
43
 * an appropriate value, if it receives an event it isn't supposed to handle
44
 * (e.g. a number handler getting an on_string event), and also updates the
45
 * value when appropriate. Note that they never need to handle on_comment_part,
46
 * on_comment, on_document_begin, and on_document_end events, as those are
47
 * always handled by the top handler into_handler<T>.
48
 *
49
 * When the nested handler receives an event that completes the current value,
50
 * it is supposed to call its parent's signal_value member function. This is
51
 * necessary for correct handling of composite types (e.g. sequences).
52
 *
53
 * Finally, nested handlers should always call parent's signal_end member
54
 * function if they don't handle on_array_end themselves. This is necessary
55
 * to correctly handle nested composites (e.g. sequences inside sequences).
56
 * signal_end can return false and set error state when the containing parser
57
 * requires more elements.
58
 *
59
 * converting_handler instantiations for composite categories of types have
60
 * their own nested handlers, to which they themselves delegate events. For
61
 * complex types you will get a tree of handlers with into_handler<T> as the
62
 * root and handlers for scalars as leaves.
63
 *
64
 * To reiterate, only into_handler has to handle on_comment_part, on_comment,
65
 * on_document_begin, and on_document_end; only handlers for composites and
66
 * into_handler has to provide signal_value and signal_end; all handlers
67
 * except for into_handler have to call their parent's signal_end from
68
 * their on_array_begin, if they don't handle it themselves; once a handler
69
 * receives an event that finishes its current value, it should call its
70
 * parent's signal_value.
71
 */
72
73
namespace boost {
74
namespace json {
75
namespace detail {
76
77
template< class Impl, class T, class Parent >
78
class converting_handler;
79
80
// get_handler
81
template< class V, class P >
82
using get_handler = converting_handler< generic_conversion_category<V>, V, P >;
83
84
template<error E> class handler_error_base
85
{
86
public:
87
88
    handler_error_base() = default;
89
90
    handler_error_base( handler_error_base const& ) = delete;
91
    handler_error_base& operator=( handler_error_base const& ) = delete;
92
93
public:
94
95
54
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_object_begin(boost::system::error_code&)
Line
Count
Source
95
10
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_object_begin(boost::system::error_code&)
Line
Count
Source
95
22
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_object_begin(boost::system::error_code&)
Line
Count
Source
95
11
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_object_begin(boost::system::error_code&)
Line
Count
Source
95
10
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_object_begin(boost::system::error_code&)
Line
Count
Source
95
1
    bool on_object_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
96
71
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_array_begin(boost::system::error_code&)
Line
Count
Source
96
11
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_array_begin(boost::system::error_code&)
Line
Count
Source
96
26
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_array_begin(boost::system::error_code&)
Line
Count
Source
96
12
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_array_begin(boost::system::error_code&)
Line
Count
Source
96
21
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_array_begin(boost::system::error_code&)
Line
Count
Source
96
1
    bool on_array_begin( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
97
    bool on_array_end( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
98
28
    bool on_string_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
98
5
    bool on_string_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
98
13
    bool on_string_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
98
9
    bool on_string_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
98
1
    bool on_string_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
99
2.38k
    bool on_string( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
99
599
    bool on_string( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
99
1.19k
    bool on_string( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
99
597
    bool on_string( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
99
1
    bool on_string( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
100
12
    bool on_number_part( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_number_part(boost::system::error_code&)
Line
Count
Source
100
5
    bool on_number_part( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_number_part(boost::system::error_code&)
Line
Count
Source
100
6
    bool on_number_part( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_number_part(boost::system::error_code&)
Line
Count
Source
100
1
    bool on_number_part( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
101
8.16k
    bool on_int64( system::error_code& ec, std::int64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_int64(boost::system::error_code&, long)
Line
Count
Source
101
8.15k
    bool on_int64( system::error_code& ec, std::int64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_int64(boost::system::error_code&, long)
Line
Count
Source
101
7
    bool on_int64( system::error_code& ec, std::int64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_int64(boost::system::error_code&, long)
Line
Count
Source
101
1
    bool on_int64( system::error_code& ec, std::int64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
102
269
    bool on_uint64( system::error_code& ec, std::uint64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
102
260
    bool on_uint64( system::error_code& ec, std::uint64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
102
8
    bool on_uint64( system::error_code& ec, std::uint64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
102
1
    bool on_uint64( system::error_code& ec, std::uint64_t ) { BOOST_JSON_FAIL( ec, E ); return false; }
103
1.11k
    bool on_double( system::error_code& ec, double ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_double(boost::system::error_code&, double)
Line
Count
Source
103
365
    bool on_double( system::error_code& ec, double ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_double(boost::system::error_code&, double)
Line
Count
Source
103
743
    bool on_double( system::error_code& ec, double ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_double(boost::system::error_code&, double)
Line
Count
Source
103
10
    bool on_double( system::error_code& ec, double ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_double(boost::system::error_code&, double)
Line
Count
Source
103
1
    bool on_double( system::error_code& ec, double ) { BOOST_JSON_FAIL( ec, E ); return false; }
104
30
    bool on_bool( system::error_code& ec, bool ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
104
13
    bool on_bool( system::error_code& ec, bool ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
104
9
    bool on_bool( system::error_code& ec, bool ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
104
7
    bool on_bool( system::error_code& ec, bool ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)28>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
104
1
    bool on_bool( system::error_code& ec, bool ) { BOOST_JSON_FAIL( ec, E ); return false; }
105
35
    bool on_null( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)29>::on_null(boost::system::error_code&)
Line
Count
Source
105
6
    bool on_null( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)36>::on_null(boost::system::error_code&)
Line
Count
Source
105
13
    bool on_null( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)35>::on_null(boost::system::error_code&)
Line
Count
Source
105
8
    bool on_null( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
boost::json::detail::handler_error_base<(boost::json::error)32>::on_null(boost::system::error_code&)
Line
Count
Source
105
8
    bool on_null( system::error_code& ec ) { BOOST_JSON_FAIL( ec, E ); return false; }
106
107
    // LCOV_EXCL_START
108
    // parses that can't handle this would fail at on_object_begin
109
0
    bool on_object_end( system::error_code& ) { BOOST_ASSERT( false ); return false; }
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)29>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)36>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)35>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)32>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)28>::on_object_end(boost::system::error_code&)
110
0
    bool on_key_part( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)29>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)36>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)35>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)32>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)28>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
111
0
    bool on_key( system::error_code& ec, string_view ) { BOOST_JSON_FAIL( ec, E ); return false; }
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)29>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)36>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)35>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)32>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::handler_error_base<(boost::json::error)28>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
112
    // LCOV_EXCL_STOP
113
};
114
115
template< class P, error E >
116
class scalar_handler
117
    : public handler_error_base<E>
118
{
119
protected:
120
    P* parent_;
121
122
public:
123
    scalar_handler(scalar_handler const&) = delete;
124
    scalar_handler& operator=(scalar_handler const&) = delete;
125
126
286k
    scalar_handler(P* p): parent_( p )
127
286k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
126
17.6k
    scalar_handler(P* p): parent_( p )
127
17.6k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
126
17.6k
    scalar_handler(P* p): parent_( p )
127
17.6k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
17.6k
    scalar_handler(P* p): parent_( p )
127
17.6k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)28>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
8.84k
    scalar_handler(P* p): parent_( p )
127
8.84k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
9.63k
    scalar_handler(P* p): parent_( p )
127
9.63k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
10.4k
    scalar_handler(P* p): parent_( p )
127
10.4k
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
960
    scalar_handler(P* p): parent_( p )
127
960
    {}
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::scalar_handler(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
126
600
    scalar_handler(P* p): parent_( p )
127
600
    {}
128
129
    bool on_array_end( system::error_code& ec )
130
5.96k
    {
131
5.96k
        return parent_->signal_end(ec);
132
5.96k
    }
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
241
    {
131
241
        return parent_->signal_end(ec);
132
241
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
616
    {
131
616
        return parent_->signal_end(ec);
132
616
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
478
    {
131
478
        return parent_->signal_end(ec);
132
478
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
313
    {
131
313
        return parent_->signal_end(ec);
132
313
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
410
    {
131
410
        return parent_->signal_end(ec);
132
410
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
506
    {
131
506
        return parent_->signal_end(ec);
132
506
    }
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
1
    {
131
1
        return parent_->signal_end(ec);
132
1
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
2
    {
131
2
        return parent_->signal_end(ec);
132
2
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
1
    {
131
1
        return parent_->signal_end(ec);
132
1
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
1
    {
131
1
        return parent_->signal_end(ec);
132
1
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
834
    {
131
834
        return parent_->signal_end(ec);
132
834
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
773
    {
131
773
        return parent_->signal_end(ec);
132
773
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)28>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
1
    {
131
1
        return parent_->signal_end(ec);
132
1
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
950
    {
131
950
        return parent_->signal_end(ec);
132
950
    }
boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Line
Count
Source
130
836
    {
131
836
        return parent_->signal_end(ec);
132
836
    }
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)29>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)36>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)35>::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::scalar_handler<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)32>::on_array_end(boost::system::error_code&)
133
};
134
135
template< class D, class V, class P, error E >
136
class composite_handler
137
{
138
protected:
139
    using inner_handler_type = get_handler<V, D>;
140
141
    P* parent_;
142
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
143
# pragma GCC diagnostic push
144
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
145
#endif
146
    V next_value_ = {};
147
    inner_handler_type inner_;
148
    bool inner_active_ = false;
149
150
public:
151
    composite_handler( composite_handler const& ) = delete;
152
    composite_handler& operator=( composite_handler const& ) = delete;
153
154
    composite_handler( P* p )
155
114k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
114k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::composite_handler(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
155
8.84k
        : parent_(p), inner_( &next_value_, static_cast<D*>(this) )
156
8.84k
    {}
157
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
158
# pragma GCC diagnostic pop
159
#endif
160
161
    bool signal_end(system::error_code& ec)
162
5.95k
    {
163
5.95k
        inner_active_ = false;
164
5.95k
        return parent_->signal_value(ec);
165
5.95k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
241
    {
163
241
        inner_active_ = false;
164
241
        return parent_->signal_value(ec);
165
241
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
616
    {
163
616
        inner_active_ = false;
164
616
        return parent_->signal_value(ec);
165
616
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
478
    {
163
478
        inner_active_ = false;
164
478
        return parent_->signal_value(ec);
165
478
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
312
    {
163
312
        inner_active_ = false;
164
312
        return parent_->signal_value(ec);
165
312
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
409
    {
163
409
        inner_active_ = false;
164
409
        return parent_->signal_value(ec);
165
409
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
505
    {
163
505
        inner_active_ = false;
164
505
        return parent_->signal_value(ec);
165
505
    }
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::signal_end(boost::system::error_code&)
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
832
    {
163
832
        inner_active_ = false;
164
832
        return parent_->signal_value(ec);
165
832
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
771
    {
163
771
        inner_active_ = false;
164
771
        return parent_->signal_value(ec);
165
771
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
950
    {
163
950
        inner_active_ = false;
164
950
        return parent_->signal_value(ec);
165
950
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::signal_end(boost::system::error_code&)
Line
Count
Source
162
836
    {
163
836
        inner_active_ = false;
164
836
        return parent_->signal_value(ec);
165
836
    }
166
167
#define BOOST_JSON_INVOKE_INNER(f) \
168
1.12M
    if( !inner_active_ ) { \
169
121
        BOOST_JSON_FAIL(ec, E); \
170
121
        return false; \
171
121
    } \
172
1.12M
    else \
173
1.12M
        return inner_.f
174
175
    bool on_object_begin( system::error_code& ec )
176
23
    {
177
23
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
23
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
3
    {
177
3
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
3
    {
177
3
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
3
    {
177
3
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_begin(boost::system::error_code&)
Line
Count
Source
176
2
    {
177
2
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
178
2
    }
179
180
    bool on_object_end( system::error_code& ec )
181
0
    {
182
0
        BOOST_JSON_INVOKE_INNER( on_object_end(ec) );
183
0
    }
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_object_end(boost::system::error_code&)
184
185
    bool on_array_begin( system::error_code& ec )
186
6
    {
187
6
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
188
6
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_array_begin(boost::system::error_code&)
Line
Count
Source
186
2
    {
187
2
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
188
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_array_begin(boost::system::error_code&)
Line
Count
Source
186
2
    {
187
2
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
188
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_array_begin(boost::system::error_code&)
Line
Count
Source
186
2
    {
187
2
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
188
2
    }
189
190
    bool on_array_end( system::error_code& ec )
191
    {
192
        BOOST_JSON_INVOKE_INNER( on_array_end(ec) );
193
    }
194
195
    bool on_key_part( system::error_code& ec, string_view sv )
196
0
    {
197
0
        BOOST_JSON_INVOKE_INNER( on_key_part(ec, sv) );
198
0
    }
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
199
200
    bool on_key( system::error_code& ec, string_view sv )
201
0
    {
202
0
        BOOST_JSON_INVOKE_INNER( on_key(ec, sv) );
203
0
    }
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
204
205
    bool on_string_part( system::error_code& ec, string_view sv )
206
4.84k
    {
207
4.84k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
4.84k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
4
    {
207
4
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
4
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
1.25k
    {
207
1.25k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
1.25k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
4
    {
207
4
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
4
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
1.14k
    {
207
1.14k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
1.14k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2.41k
    {
207
2.41k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2.41k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
206
2
    {
207
2
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
208
2
    }
209
210
    bool on_string( system::error_code& ec, string_view sv )
211
84.6k
    {
212
84.6k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
84.6k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
3
    {
212
3
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
3.40k
    {
212
3.40k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
3.40k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2.56k
    {
212
2.56k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2.56k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
2
    {
212
2
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
78.6k
    {
212
78.6k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
78.6k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
211
3
    {
212
3
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
213
3
    }
214
215
    bool on_number_part( system::error_code& ec )
216
28
    {
217
28
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
28
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
2
    {
217
2
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_number_part(boost::system::error_code&)
Line
Count
Source
216
4
    {
217
4
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
218
4
    }
219
220
    bool on_int64( system::error_code& ec, std::int64_t v )
221
911k
    {
222
911k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
911k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
2
    {
222
2
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
385k
    {
222
385k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
385k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
66.9k
    {
222
66.9k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
66.9k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
2
    {
222
2
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
1.24k
    {
222
1.24k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
1.24k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
1.46k
    {
222
1.46k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
1.46k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
7.92k
    {
222
7.92k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
7.92k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
2
    {
222
2
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
12.0k
    {
222
12.0k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
12.0k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
2
    {
222
2
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
1.80k
    {
222
1.80k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
1.80k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
2
    {
222
2
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_int64(boost::system::error_code&, long)
Line
Count
Source
221
434k
    {
222
434k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
223
434k
    }
224
225
    bool on_uint64( system::error_code& ec, std::uint64_t v )
226
6.26k
    {
227
6.26k
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
6.26k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
2
    {
227
2
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
55
    {
227
55
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
55
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
493
    {
227
493
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
493
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
2
    {
227
2
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
94
    {
227
94
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
94
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
202
    {
227
202
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
202
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
74
    {
227
74
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
74
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
2
    {
227
2
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
43
    {
227
43
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
43
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
2
    {
227
2
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
298
    {
227
298
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
298
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
2
    {
227
2
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
226
4.99k
    {
227
4.99k
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
228
4.99k
    }
229
230
    bool on_double( system::error_code& ec, double v )
231
5.09k
    {
232
5.09k
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
5.09k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
4
    {
232
4
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
4
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
3
    {
232
3
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
3
    {
232
3
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
3
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
4
    {
232
4
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
4
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
200
    {
232
200
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
200
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
291
    {
232
291
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
291
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
2
    {
232
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_double(boost::system::error_code&, double)
Line
Count
Source
231
4.57k
    {
232
4.57k
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
233
4.57k
    }
234
235
    bool on_bool( system::error_code& ec, bool v )
236
113k
    {
237
113k
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
113k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
112k
    {
237
112k
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
112k
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
955
    {
237
955
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
955
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
2
    {
237
2
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_bool(boost::system::error_code&, bool)
Line
Count
Source
236
4
    {
237
4
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
238
4
    }
239
240
    bool on_null( system::error_code& ec )
241
30
    {
242
30
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
30
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >, (boost::json::error)31>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
6
    {
242
6
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
6
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
boost::json::detail::composite_handler<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, (boost::json::error)30>::on_null(boost::system::error_code&)
Line
Count
Source
241
2
    {
242
2
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
243
2
    }
244
245
#undef BOOST_JSON_INVOKE_INNER
246
};
247
248
// integral handler
249
template<class V,
250
typename std::enable_if<std::is_signed<V>::value, int>::type = 0>
251
bool integral_in_range( std::int64_t v )
252
396k
{
253
396k
    return v >= (std::numeric_limits<V>::min)() && v <= (std::numeric_limits<V>::max)();
254
396k
}
255
256
template<class V,
257
typename std::enable_if<!std::is_signed<V>::value, int>::type = 0>
258
bool integral_in_range( std::int64_t v )
259
79.4k
{
260
79.4k
    return v >= 0 && static_cast<std::uint64_t>( v ) <= (std::numeric_limits<V>::max)();
261
79.4k
}
262
263
template<class V>
264
bool integral_in_range( std::uint64_t v )
265
2.31k
{
266
2.31k
    return v <= static_cast<typename std::make_unsigned<V>::type>( (std::numeric_limits<V>::max)() );
267
2.31k
}
bool boost::json::detail::integral_in_range<unsigned long>(unsigned long)
Line
Count
Source
265
1.82k
{
266
1.82k
    return v <= static_cast<typename std::make_unsigned<V>::type>( (std::numeric_limits<V>::max)() );
267
1.82k
}
bool boost::json::detail::integral_in_range<long>(unsigned long)
Line
Count
Source
265
486
{
266
486
    return v <= static_cast<typename std::make_unsigned<V>::type>( (std::numeric_limits<V>::max)() );
267
486
}
268
269
template< class V, class P >
270
class converting_handler<integral_conversion_tag, V, P>
271
    : public scalar_handler<P, error::not_integer>
272
{
273
private:
274
    V* value_;
275
276
public:
277
    converting_handler( V* v, P* p )
278
107k
        : converting_handler::scalar_handler(p)
279
107k
        , value_(v)
280
107k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
8.84k
        : converting_handler::scalar_handler(p)
279
8.84k
        , value_(v)
280
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(unsigned long*, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
9.36k
        : converting_handler::scalar_handler(p)
279
9.36k
        , value_(v)
280
9.36k
    {}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(long*, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
278
1.12k
        : converting_handler::scalar_handler(p)
279
1.12k
        , value_(v)
280
1.12k
    {}
281
282
    bool on_number_part( system::error_code& )
283
11
    {
284
11
        return true;
285
11
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
283
1
    {
284
1
        return true;
285
1
    }
286
287
    bool on_int64(system::error_code& ec, std::int64_t v)
288
476k
    {
289
476k
        if( !integral_in_range<V>( v ) )
290
436
        {
291
436
            BOOST_JSON_FAIL( ec, error::not_exact );
292
436
            return false;
293
436
        }
294
295
475k
        *value_ = static_cast<V>( v );
296
475k
        return this->parent_->signal_value(ec);
297
476k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
223
    {
289
223
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
223
        *value_ = static_cast<V>( v );
296
223
        return this->parent_->signal_value(ec);
297
223
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
501
    {
289
501
        if( !integral_in_range<V>( v ) )
290
71
        {
291
71
            BOOST_JSON_FAIL( ec, error::not_exact );
292
71
            return false;
293
71
        }
294
295
430
        *value_ = static_cast<V>( v );
296
430
        return this->parent_->signal_value(ec);
297
501
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
385k
    {
289
385k
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
385k
        *value_ = static_cast<V>( v );
296
385k
        return this->parent_->signal_value(ec);
297
385k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
66.9k
    {
289
66.9k
        if( !integral_in_range<V>( v ) )
290
72
        {
291
72
            BOOST_JSON_FAIL( ec, error::not_exact );
292
72
            return false;
293
72
        }
294
295
66.9k
        *value_ = static_cast<V>( v );
296
66.9k
        return this->parent_->signal_value(ec);
297
66.9k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
1.24k
    {
289
1.24k
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
1.24k
        *value_ = static_cast<V>( v );
296
1.24k
        return this->parent_->signal_value(ec);
297
1.24k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
1.46k
    {
289
1.46k
        if( !integral_in_range<V>( v ) )
290
73
        {
291
73
            BOOST_JSON_FAIL( ec, error::not_exact );
292
73
            return false;
293
73
        }
294
295
1.39k
        *value_ = static_cast<V>( v );
296
1.39k
        return this->parent_->signal_value(ec);
297
1.46k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
7.92k
    {
289
7.92k
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
7.92k
        *value_ = static_cast<V>( v );
296
7.92k
        return this->parent_->signal_value(ec);
297
7.92k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
1.47k
    {
289
1.47k
        if( !integral_in_range<V>( v ) )
290
24
        {
291
24
            BOOST_JSON_FAIL( ec, error::not_exact );
292
24
            return false;
293
24
        }
294
295
1.45k
        *value_ = static_cast<V>( v );
296
1.45k
        return this->parent_->signal_value(ec);
297
1.47k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
1.70k
    {
289
1.70k
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
1.70k
        *value_ = static_cast<V>( v );
296
1.70k
        return this->parent_->signal_value(ec);
297
1.70k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
8.15k
    {
289
8.15k
        if( !integral_in_range<V>( v ) )
290
165
        {
291
165
            BOOST_JSON_FAIL( ec, error::not_exact );
292
165
            return false;
293
165
        }
294
295
7.98k
        *value_ = static_cast<V>( v );
296
7.98k
        return this->parent_->signal_value(ec);
297
8.15k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
165
    {
289
165
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
165
        *value_ = static_cast<V>( v );
296
165
        return this->parent_->signal_value(ec);
297
165
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
82
    {
289
82
        if( !integral_in_range<V>( v ) )
290
0
        {
291
0
            BOOST_JSON_FAIL( ec, error::not_exact );
292
0
            return false;
293
0
        }
294
295
82
        *value_ = static_cast<V>( v );
296
82
        return this->parent_->signal_value(ec);
297
82
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
288
874
    {
289
874
        if( !integral_in_range<V>( v ) )
290
31
        {
291
31
            BOOST_JSON_FAIL( ec, error::not_exact );
292
31
            return false;
293
31
        }
294
295
843
        *value_ = static_cast<V>( v );
296
843
        return this->parent_->signal_value(ec);
297
874
    }
298
299
    bool on_uint64(system::error_code& ec, std::uint64_t v)
300
2.31k
    {
301
2.31k
        if( !integral_in_range<V>(v) )
302
486
        {
303
486
            BOOST_JSON_FAIL( ec, error::not_exact );
304
486
            return false;
305
486
        }
306
307
1.82k
        *value_ = static_cast<V>(v);
308
1.82k
        return this->parent_->signal_value(ec);
309
2.31k
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
255
    {
301
255
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
255
        *value_ = static_cast<V>(v);
308
255
        return this->parent_->signal_value(ec);
309
255
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
82
    {
301
82
        if( !integral_in_range<V>(v) )
302
82
        {
303
82
            BOOST_JSON_FAIL( ec, error::not_exact );
304
82
            return false;
305
82
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
82
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
206
    {
301
206
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
206
        *value_ = static_cast<V>(v);
308
206
        return this->parent_->signal_value(ec);
309
206
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
54
    {
301
54
        if( !integral_in_range<V>(v) )
302
54
        {
303
54
            BOOST_JSON_FAIL( ec, error::not_exact );
304
54
            return false;
305
54
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
54
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
492
    {
301
492
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
492
        *value_ = static_cast<V>(v);
308
492
        return this->parent_->signal_value(ec);
309
492
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
93
    {
301
93
        if( !integral_in_range<V>(v) )
302
93
        {
303
93
            BOOST_JSON_FAIL( ec, error::not_exact );
304
93
            return false;
305
93
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
93
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
201
    {
301
201
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
201
        *value_ = static_cast<V>(v);
308
201
        return this->parent_->signal_value(ec);
309
201
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
73
    {
301
73
        if( !integral_in_range<V>(v) )
302
73
        {
303
73
            BOOST_JSON_FAIL( ec, error::not_exact );
304
73
            return false;
305
73
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
73
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
382
    {
301
382
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
382
        *value_ = static_cast<V>(v);
308
382
        return this->parent_->signal_value(ec);
309
382
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
90
    {
301
90
        if( !integral_in_range<V>(v) )
302
90
        {
303
90
            BOOST_JSON_FAIL( ec, error::not_exact );
304
90
            return false;
305
90
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
90
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
94
    {
301
94
        if( !integral_in_range<V>(v) )
302
94
        {
303
94
            BOOST_JSON_FAIL( ec, error::not_exact );
304
94
            return false;
305
94
        }
306
307
0
        *value_ = static_cast<V>(v);
308
0
        return this->parent_->signal_value(ec);
309
94
    }
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
300
289
    {
301
289
        if( !integral_in_range<V>(v) )
302
0
        {
303
0
            BOOST_JSON_FAIL( ec, error::not_exact );
304
0
            return false;
305
0
        }
306
307
289
        *value_ = static_cast<V>(v);
308
289
        return this->parent_->signal_value(ec);
309
289
    }
310
};
311
312
// floating point handler
313
template< class V, class P>
314
class converting_handler<floating_point_conversion_tag, V, P>
315
    : public scalar_handler<P, error::not_double>
316
{
317
private:
318
    V* value_;
319
320
public:
321
    converting_handler( V* v, P* p )
322
62.8k
        : converting_handler::scalar_handler(p)
323
62.8k
        , value_(v)
324
62.8k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(float*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
322
8.84k
        : converting_handler::scalar_handler(p)
323
8.84k
        , value_(v)
324
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(double*, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
322
960
        : converting_handler::scalar_handler(p)
323
960
        , value_(v)
324
960
    {}
325
326
    bool on_number_part( system::error_code& )
327
9
    {
328
9
        return true;
329
9
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
3
    {
328
3
        return true;
329
3
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_number_part(boost::system::error_code&)
Line
Count
Source
327
1
    {
328
1
        return true;
329
1
    }
330
331
    bool on_int64(system::error_code& ec, std::int64_t v)
332
461k
    {
333
461k
        *value_ = static_cast<V>(v);
334
461k
        return this->parent_->signal_value(ec);
335
461k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
9.12k
    {
333
9.12k
        *value_ = static_cast<V>(v);
334
9.12k
        return this->parent_->signal_value(ec);
335
9.12k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
2.48k
    {
333
2.48k
        *value_ = static_cast<V>(v);
334
2.48k
        return this->parent_->signal_value(ec);
335
2.48k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
12.0k
    {
333
12.0k
        *value_ = static_cast<V>(v);
334
12.0k
        return this->parent_->signal_value(ec);
335
12.0k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
1.11k
    {
333
1.11k
        *value_ = static_cast<V>(v);
334
1.11k
        return this->parent_->signal_value(ec);
335
1.11k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
1.80k
    {
333
1.80k
        *value_ = static_cast<V>(v);
334
1.80k
        return this->parent_->signal_value(ec);
335
1.80k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
434k
    {
333
434k
        *value_ = static_cast<V>(v);
334
434k
        return this->parent_->signal_value(ec);
335
434k
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
332
73
    {
333
73
        *value_ = static_cast<V>(v);
334
73
        return this->parent_->signal_value(ec);
335
73
    }
336
337
    bool on_uint64(system::error_code& ec, std::uint64_t v)
338
6.09k
    {
339
6.09k
        *value_ = static_cast<V>(v);
340
6.09k
        return this->parent_->signal_value(ec);
341
6.09k
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
64
    {
339
64
        *value_ = static_cast<V>(v);
340
64
        return this->parent_->signal_value(ec);
341
64
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
230
    {
339
230
        *value_ = static_cast<V>(v);
340
230
        return this->parent_->signal_value(ec);
341
230
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
42
    {
339
42
        *value_ = static_cast<V>(v);
340
42
        return this->parent_->signal_value(ec);
341
42
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
274
    {
339
274
        *value_ = static_cast<V>(v);
340
274
        return this->parent_->signal_value(ec);
341
274
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
297
    {
339
297
        *value_ = static_cast<V>(v);
340
297
        return this->parent_->signal_value(ec);
341
297
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
4.99k
    {
339
4.99k
        *value_ = static_cast<V>(v);
340
4.99k
        return this->parent_->signal_value(ec);
341
4.99k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
338
189
    {
339
189
        *value_ = static_cast<V>(v);
340
189
        return this->parent_->signal_value(ec);
341
189
    }
342
343
    bool on_double(system::error_code& ec, double v)
344
6.42k
    {
345
6.42k
        *value_ = static_cast<V>(v);
346
6.42k
        return this->parent_->signal_value(ec);
347
6.42k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
360
    {
345
360
        *value_ = static_cast<V>(v);
346
360
        return this->parent_->signal_value(ec);
347
360
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
198
    {
345
198
        *value_ = static_cast<V>(v);
346
198
        return this->parent_->signal_value(ec);
347
198
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
290
    {
345
290
        *value_ = static_cast<V>(v);
346
290
        return this->parent_->signal_value(ec);
347
290
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
199
    {
345
199
        *value_ = static_cast<V>(v);
346
199
        return this->parent_->signal_value(ec);
347
199
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
300
    {
345
300
        *value_ = static_cast<V>(v);
346
300
        return this->parent_->signal_value(ec);
347
300
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
290
    {
345
290
        *value_ = static_cast<V>(v);
346
290
        return this->parent_->signal_value(ec);
347
290
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
4.57k
    {
345
4.57k
        *value_ = static_cast<V>(v);
346
4.57k
        return this->parent_->signal_value(ec);
347
4.57k
    }
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_double(boost::system::error_code&, double)
Line
Count
Source
344
212
    {
345
212
        *value_ = static_cast<V>(v);
346
212
        return this->parent_->signal_value(ec);
347
212
    }
348
};
349
350
// string handler
351
template< class V, class P >
352
class converting_handler<string_like_conversion_tag, V, P>
353
    : public scalar_handler<P, error::not_string>
354
{
355
private:
356
    V* value_;
357
    bool cleared_ = false;
358
359
public:
360
    converting_handler( V* v, P* p )
361
53.6k
        : converting_handler::scalar_handler(p)
362
53.6k
        , value_(v)
363
53.6k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
361
8.84k
        : converting_handler::scalar_handler(p)
362
8.84k
        , value_(v)
363
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
361
600
        : converting_handler::scalar_handler(p)
362
600
        , value_(v)
363
600
    {}
364
365
    bool on_string_part( system::error_code&, string_view sv )
366
7.92k
    {
367
7.92k
        if( !cleared_ )
368
3.02k
        {
369
3.02k
            cleared_ = true;
370
3.02k
            value_->clear();
371
3.02k
        }
372
373
7.92k
        value_->append( sv.begin(), sv.end() );
374
7.92k
        return true;
375
7.92k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
1.67k
    {
367
1.67k
        if( !cleared_ )
368
383
        {
369
383
            cleared_ = true;
370
383
            value_->clear();
371
383
        }
372
373
1.67k
        value_->append( sv.begin(), sv.end() );
374
1.67k
        return true;
375
1.67k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
1.25k
    {
367
1.25k
        if( !cleared_ )
368
577
        {
369
577
            cleared_ = true;
370
577
            value_->clear();
371
577
        }
372
373
1.25k
        value_->append( sv.begin(), sv.end() );
374
1.25k
        return true;
375
1.25k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
686
    {
367
686
        if( !cleared_ )
368
288
        {
369
288
            cleared_ = true;
370
288
            value_->clear();
371
288
        }
372
373
686
        value_->append( sv.begin(), sv.end() );
374
686
        return true;
375
686
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
1.13k
    {
367
1.13k
        if( !cleared_ )
368
273
        {
369
273
            cleared_ = true;
370
273
            value_->clear();
371
273
        }
372
373
1.13k
        value_->append( sv.begin(), sv.end() );
374
1.13k
        return true;
375
1.13k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
2.41k
    {
367
2.41k
        if( !cleared_ )
368
1.30k
        {
369
1.30k
            cleared_ = true;
370
1.30k
            value_->clear();
371
1.30k
        }
372
373
2.41k
        value_->append( sv.begin(), sv.end() );
374
2.41k
        return true;
375
2.41k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
366
751
    {
367
751
        if( !cleared_ )
368
196
        {
369
196
            cleared_ = true;
370
196
            value_->clear();
371
196
        }
372
373
751
        value_->append( sv.begin(), sv.end() );
374
751
        return true;
375
751
    }
376
377
    bool on_string(system::error_code& ec, string_view sv)
378
88.6k
    {
379
88.6k
        if( !cleared_ )
380
85.8k
            value_->clear();
381
2.83k
        else
382
2.83k
            cleared_ = false;
383
384
88.6k
        value_->append( sv.begin(), sv.end() );
385
88.6k
        return this->parent_->signal_value(ec);
386
88.6k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
589
    {
379
589
        if( !cleared_ )
380
589
            value_->clear();
381
0
        else
382
0
            cleared_ = false;
383
384
589
        value_->append( sv.begin(), sv.end() );
385
589
        return this->parent_->signal_value(ec);
386
589
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
787
    {
379
787
        if( !cleared_ )
380
475
            value_->clear();
381
312
        else
382
312
            cleared_ = false;
383
384
787
        value_->append( sv.begin(), sv.end() );
385
787
        return this->parent_->signal_value(ec);
386
787
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
3.40k
    {
379
3.40k
        if( !cleared_ )
380
2.84k
            value_->clear();
381
556
        else
382
556
            cleared_ = false;
383
384
3.40k
        value_->append( sv.begin(), sv.end() );
385
3.40k
        return this->parent_->signal_value(ec);
386
3.40k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
1.63k
    {
379
1.63k
        if( !cleared_ )
380
1.36k
            value_->clear();
381
264
        else
382
264
            cleared_ = false;
383
384
1.63k
        value_->append( sv.begin(), sv.end() );
385
1.63k
        return this->parent_->signal_value(ec);
386
1.63k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
2.56k
    {
379
2.56k
        if( !cleared_ )
380
2.31k
            value_->clear();
381
249
        else
382
249
            cleared_ = false;
383
384
2.56k
        value_->append( sv.begin(), sv.end() );
385
2.56k
        return this->parent_->signal_value(ec);
386
2.56k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
78.6k
    {
379
78.6k
        if( !cleared_ )
380
77.3k
            value_->clear();
381
1.27k
        else
382
1.27k
            cleared_ = false;
383
384
78.6k
        value_->append( sv.begin(), sv.end() );
385
78.6k
        return this->parent_->signal_value(ec);
386
78.6k
    }
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
378
1.04k
    {
379
1.04k
        if( !cleared_ )
380
869
            value_->clear();
381
179
        else
382
179
            cleared_ = false;
383
384
1.04k
        value_->append( sv.begin(), sv.end() );
385
1.04k
        return this->parent_->signal_value(ec);
386
1.04k
    }
387
};
388
389
// bool handler
390
template< class V, class P >
391
class converting_handler<bool_conversion_tag, V, P>
392
    : public scalar_handler<P, error::not_bool>
393
{
394
private:
395
    V* value_;
396
397
public:
398
    converting_handler( V* v, P* p )
399
53.8k
        : converting_handler::scalar_handler(p)
400
53.8k
        , value_(v)
401
53.8k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
399
8.84k
        : converting_handler::scalar_handler(p)
400
8.84k
        , value_(v)
401
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
399
8.84k
        : converting_handler::scalar_handler(p)
400
8.84k
        , value_(v)
401
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
399
8.84k
        : converting_handler::scalar_handler(p)
400
8.84k
        , value_(v)
401
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
399
8.84k
        : converting_handler::scalar_handler(p)
400
8.84k
        , value_(v)
401
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
399
8.84k
        : converting_handler::scalar_handler(p)
400
8.84k
        , value_(v)
401
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(bool*, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
399
9.63k
        : converting_handler::scalar_handler(p)
400
9.63k
        , value_(v)
401
9.63k
    {}
402
403
    bool on_bool(system::error_code& ec, bool v)
404
116k
    {
405
116k
        *value_ = v;
406
116k
        return this->parent_->signal_value(ec);
407
116k
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
268
    {
405
268
        *value_ = v;
406
268
        return this->parent_->signal_value(ec);
407
268
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
96
    {
405
96
        *value_ = v;
406
96
        return this->parent_->signal_value(ec);
407
96
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
112k
    {
405
112k
        *value_ = v;
406
112k
        return this->parent_->signal_value(ec);
407
112k
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
954
    {
405
954
        *value_ = v;
406
954
        return this->parent_->signal_value(ec);
407
954
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
1.87k
    {
405
1.87k
        *value_ = v;
406
1.87k
        return this->parent_->signal_value(ec);
407
1.87k
    }
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
404
66
    {
405
66
        *value_ = v;
406
66
        return this->parent_->signal_value(ec);
407
66
    }
408
};
409
410
// null handler
411
template< class V, class P >
412
class converting_handler<null_like_conversion_tag, V, P>
413
    : public scalar_handler<P, error::not_null>
414
{
415
private:
416
    V* value_;
417
418
public:
419
    converting_handler( V* v, P* p )
420
8.84k
        : converting_handler::scalar_handler(p)
421
8.84k
        , value_(v)
422
8.84k
    {}
423
424
    bool on_null(system::error_code& ec)
425
756
    {
426
756
        *value_ = {};
427
756
        return this->parent_->signal_value(ec);
428
756
    }
429
};
430
431
// described enum handler
432
template< class V, class P >
433
class converting_handler<described_enum_conversion_tag, V, P>
434
    : public scalar_handler<P, error::not_string>
435
{
436
#ifndef BOOST_DESCRIBE_CXX14
437
438
    static_assert(
439
        sizeof(V) == 0, "Enum support for parse_into requires C++14" );
440
441
#else
442
443
private:
444
    V* value_;
445
    std::string name_;
446
447
public:
448
    converting_handler( V* v, P* p )
449
        : converting_handler::scalar_handler(p)
450
        , value_(v)
451
    {}
452
453
    bool on_string_part( system::error_code&, string_view sv )
454
    {
455
        name_.append( sv.begin(), sv.end() );
456
        return true;
457
    }
458
459
    bool on_string(system::error_code& ec, string_view sv)
460
    {
461
        string_view name = sv;
462
        if( !name_.empty() )
463
        {
464
            name_.append( sv.begin(), sv.end() );
465
            name = name_;
466
        }
467
468
        if( !describe::enum_from_string(name, *value_) )
469
        {
470
            BOOST_JSON_FAIL(ec, error::unknown_name);
471
            return false;
472
        }
473
474
        return this->parent_->signal_value(ec);
475
    }
476
477
#endif // BOOST_DESCRIBE_CXX14
478
};
479
480
template< class V, class P >
481
class converting_handler<no_conversion_tag, V, P>
482
{
483
    static_assert( sizeof(V) == 0, "This type is not supported" );
484
};
485
486
// sequence handler
487
template< class It >
488
bool cannot_insert(It i, It e)
489
8.74k
{
490
8.74k
    return i == e;
491
8.74k
}
bool boost::json::detail::cannot_insert<long*>(long*, long*)
Line
Count
Source
489
1.24k
{
490
1.24k
    return i == e;
491
1.24k
}
bool boost::json::detail::cannot_insert<unsigned long*>(unsigned long*, unsigned long*)
Line
Count
Source
489
1.59k
{
490
1.59k
    return i == e;
491
1.59k
}
bool boost::json::detail::cannot_insert<double*>(double*, double*)
Line
Count
Source
489
2.38k
{
490
2.38k
    return i == e;
491
2.38k
}
bool boost::json::detail::cannot_insert<bool*>(bool*, bool*)
Line
Count
Source
489
954
{
490
954
    return i == e;
491
954
}
bool boost::json::detail::cannot_insert<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*)
Line
Count
Source
489
2.56k
{
490
2.56k
    return i == e;
491
2.56k
}
492
493
template< class It1, class It2 >
494
std::false_type cannot_insert(It1, It2)
495
1.08M
{
496
1.08M
    return {};
497
1.08M
}
std::__1::integral_constant<bool, false> boost::json::detail::cannot_insert<std::__1::back_insert_iterator<std::__1::vector<long, std::__1::allocator<long> > >, std::__1::__wrap_iter<long*> >(std::__1::back_insert_iterator<std::__1::vector<long, std::__1::allocator<long> > >, std::__1::__wrap_iter<long*>)
Line
Count
Source
495
385k
{
496
385k
    return {};
497
385k
}
std::__1::integral_constant<bool, false> boost::json::detail::cannot_insert<std::__1::back_insert_iterator<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > >, std::__1::__wrap_iter<unsigned long*> >(std::__1::back_insert_iterator<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > >, std::__1::__wrap_iter<unsigned long*>)
Line
Count
Source
495
67.4k
{
496
67.4k
    return {};
497
67.4k
}
std::__1::integral_constant<bool, false> boost::json::detail::cannot_insert<std::__1::back_insert_iterator<std::__1::vector<double, std::__1::allocator<double> > >, std::__1::__wrap_iter<double*> >(std::__1::back_insert_iterator<std::__1::vector<double, std::__1::allocator<double> > >, std::__1::__wrap_iter<double*>)
Line
Count
Source
495
444k
{
496
444k
    return {};
497
444k
}
std::__1::integral_constant<bool, false> boost::json::detail::cannot_insert<std::__1::back_insert_iterator<std::__1::vector<bool, std::__1::allocator<bool> > >, std::__1::__bit_iterator<std::__1::vector<bool, std::__1::allocator<bool> >, false, 0ul> >(std::__1::back_insert_iterator<std::__1::vector<bool, std::__1::allocator<bool> > >, std::__1::__bit_iterator<std::__1::vector<bool, std::__1::allocator<bool> >, false, 0ul>)
Line
Count
Source
495
112k
{
496
112k
    return {};
497
112k
}
std::__1::integral_constant<bool, false> boost::json::detail::cannot_insert<std::__1::back_insert_iterator<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, std::__1::__wrap_iter<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*> >(std::__1::back_insert_iterator<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, std::__1::__wrap_iter<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*>)
Line
Count
Source
495
78.6k
{
496
78.6k
    return {};
497
78.6k
}
498
499
template< class It >
500
bool needs_more_elements(It i, It e)
501
2.83k
{
502
2.83k
    return i != e;
503
2.83k
}
bool boost::json::detail::needs_more_elements<bool*>(bool*, bool*)
Line
Count
Source
501
313
{
502
313
    return i != e;
503
313
}
bool boost::json::detail::needs_more_elements<long*>(long*, long*)
Line
Count
Source
501
410
{
502
410
    return i != e;
503
410
}
bool boost::json::detail::needs_more_elements<unsigned long*>(unsigned long*, unsigned long*)
Line
Count
Source
501
506
{
502
506
    return i != e;
503
506
}
bool boost::json::detail::needs_more_elements<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*)
Line
Count
Source
501
834
{
502
834
    return i != e;
503
834
}
bool boost::json::detail::needs_more_elements<double*>(double*, double*)
Line
Count
Source
501
773
{
502
773
    return i != e;
503
773
}
504
505
template< class It1, class It2 >
506
std::false_type needs_more_elements(It1, It2)
507
3.12k
{
508
3.12k
    return {};
509
3.12k
}
std::__1::integral_constant<bool, false> boost::json::detail::needs_more_elements<std::__1::back_insert_iterator<std::__1::vector<bool, std::__1::allocator<bool> > >, std::__1::__bit_iterator<std::__1::vector<bool, std::__1::allocator<bool> >, false, 0ul> >(std::__1::back_insert_iterator<std::__1::vector<bool, std::__1::allocator<bool> > >, std::__1::__bit_iterator<std::__1::vector<bool, std::__1::allocator<bool> >, false, 0ul>)
Line
Count
Source
507
241
{
508
241
    return {};
509
241
}
std::__1::integral_constant<bool, false> boost::json::detail::needs_more_elements<std::__1::back_insert_iterator<std::__1::vector<long, std::__1::allocator<long> > >, std::__1::__wrap_iter<long*> >(std::__1::back_insert_iterator<std::__1::vector<long, std::__1::allocator<long> > >, std::__1::__wrap_iter<long*>)
Line
Count
Source
507
616
{
508
616
    return {};
509
616
}
std::__1::integral_constant<bool, false> boost::json::detail::needs_more_elements<std::__1::back_insert_iterator<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > >, std::__1::__wrap_iter<unsigned long*> >(std::__1::back_insert_iterator<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > >, std::__1::__wrap_iter<unsigned long*>)
Line
Count
Source
507
478
{
508
478
    return {};
509
478
}
std::__1::integral_constant<bool, false> boost::json::detail::needs_more_elements<std::__1::back_insert_iterator<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, std::__1::__wrap_iter<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*> >(std::__1::back_insert_iterator<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, std::__1::__wrap_iter<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*>)
Line
Count
Source
507
950
{
508
950
    return {};
509
950
}
std::__1::integral_constant<bool, false> boost::json::detail::needs_more_elements<std::__1::back_insert_iterator<std::__1::vector<double, std::__1::allocator<double> > >, std::__1::__wrap_iter<double*> >(std::__1::back_insert_iterator<std::__1::vector<double, std::__1::allocator<double> > >, std::__1::__wrap_iter<double*>)
Line
Count
Source
507
836
{
508
836
    return {};
509
836
}
510
511
template<class T>
512
void
513
clear_container(
514
    T&,
515
    mp11::mp_int<2>)
516
3.22k
{
517
3.22k
}
void boost::json::detail::clear_container<std::__1::array<bool, 3ul> >(std::__1::array<bool, 3ul>&, std::__1::integral_constant<int, 2>)
Line
Count
Source
516
337
{
517
337
}
void boost::json::detail::clear_container<std::__1::array<long, 3ul> >(std::__1::array<long, 3ul>&, std::__1::integral_constant<int, 2>)
Line
Count
Source
516
526
{
517
526
}
void boost::json::detail::clear_container<std::__1::array<unsigned long, 3ul> >(std::__1::array<unsigned long, 3ul>&, std::__1::integral_constant<int, 2>)
Line
Count
Source
516
643
{
517
643
}
void boost::json::detail::clear_container<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul> >(std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>&, std::__1::integral_constant<int, 2>)
Line
Count
Source
516
900
{
517
900
}
void boost::json::detail::clear_container<std::__1::array<double, 3ul> >(std::__1::array<double, 3ul>&, std::__1::integral_constant<int, 2>)
Line
Count
Source
516
814
{
517
814
}
518
519
template<class T>
520
void
521
clear_container(
522
    T& target,
523
    mp11::mp_int<1>)
524
3.67k
{
525
3.67k
    target.clear();
526
3.67k
}
void boost::json::detail::clear_container<std::__1::vector<bool, std::__1::allocator<bool> > >(std::__1::vector<bool, std::__1::allocator<bool> >&, std::__1::integral_constant<int, 1>)
Line
Count
Source
524
300
{
525
300
    target.clear();
526
300
}
void boost::json::detail::clear_container<std::__1::vector<long, std::__1::allocator<long> > >(std::__1::vector<long, std::__1::allocator<long> >&, std::__1::integral_constant<int, 1>)
Line
Count
Source
524
726
{
525
726
    target.clear();
526
726
}
void boost::json::detail::clear_container<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > >(std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >&, std::__1::integral_constant<int, 1>)
Line
Count
Source
524
640
{
525
640
    target.clear();
526
640
}
void boost::json::detail::clear_container<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, std::__1::integral_constant<int, 1>)
Line
Count
Source
524
1.07k
{
525
1.07k
    target.clear();
526
1.07k
}
void boost::json::detail::clear_container<std::__1::vector<double, std::__1::allocator<double> > >(std::__1::vector<double, std::__1::allocator<double> >&, std::__1::integral_constant<int, 1>)
Line
Count
Source
524
933
{
525
933
    target.clear();
526
933
}
527
528
template<class T>
529
void
530
clear_container(
531
    T& target,
532
    mp11::mp_int<0>)
533
3.24k
{
534
3.24k
    target.clear();
535
3.24k
}
void boost::json::detail::clear_container<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > > >(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >&, std::__1::integral_constant<int, 0>)
Line
Count
Source
533
907
{
534
907
    target.clear();
535
907
}
void boost::json::detail::clear_container<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&, std::__1::integral_constant<int, 0>)
Line
Count
Source
533
786
{
534
786
    target.clear();
535
786
}
void boost::json::detail::clear_container<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > > >(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >&, std::__1::integral_constant<int, 0>)
Line
Count
Source
533
1.54k
{
534
1.54k
    target.clear();
535
1.54k
}
536
537
template< class V, class P >
538
class converting_handler<sequence_conversion_tag, V, P>
539
    : public composite_handler<
540
        converting_handler<sequence_conversion_tag, V, P>,
541
        detail::value_type<V>,
542
        P,
543
        error::not_array>
544
{
545
private:
546
    V* value_;
547
548
    using Inserter = decltype(
549
        detail::inserter(*value_, inserter_implementation<V>()) );
550
    Inserter inserter;
551
552
public:
553
    converting_handler( V* v, P* p )
554
88.4k
        : converting_handler::composite_handler(p)
555
88.4k
        , value_(v)
556
88.4k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
88.4k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::vector<bool, std::__1::allocator<bool> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::vector<long, std::__1::allocator<long> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::array<bool, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::array<long, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::array<unsigned long, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::array<double, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::converting_handler(std::__1::vector<double, std::__1::allocator<double> >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
554
8.84k
        : converting_handler::composite_handler(p)
555
8.84k
        , value_(v)
556
8.84k
        , inserter( detail::inserter(*value_, inserter_implementation<V>()) )
557
8.84k
    {}
558
559
    bool signal_value(system::error_code& ec)
560
1.09M
    {
561
1.09M
        if(cannot_insert( inserter, value_->end() ))
562
17
        {
563
17
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
17
            return false;
565
17
        }
566
567
1.09M
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
1.09M
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
1.09M
        return true;
577
1.09M
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
385k
    {
561
385k
        if(cannot_insert( inserter, value_->end() ))
562
0
        {
563
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
0
            return false;
565
0
        }
566
567
385k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
385k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
385k
        return true;
577
385k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
67.4k
    {
561
67.4k
        if(cannot_insert( inserter, value_->end() ))
562
0
        {
563
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
0
            return false;
565
0
        }
566
567
67.4k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
67.4k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
67.4k
        return true;
577
67.4k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
1.24k
    {
561
1.24k
        if(cannot_insert( inserter, value_->end() ))
562
1
        {
563
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
1
            return false;
565
1
        }
566
567
1.24k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
1.24k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
1.24k
        return true;
577
1.24k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
1.59k
    {
561
1.59k
        if(cannot_insert( inserter, value_->end() ))
562
4
        {
563
4
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
4
            return false;
565
4
        }
566
567
1.58k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
1.58k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
1.58k
        return true;
577
1.59k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
2.38k
    {
561
2.38k
        if(cannot_insert( inserter, value_->end() ))
562
8
        {
563
8
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
8
            return false;
565
8
        }
566
567
2.38k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
2.38k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
2.38k
        return true;
577
2.38k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
444k
    {
561
444k
        if(cannot_insert( inserter, value_->end() ))
562
0
        {
563
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
0
            return false;
565
0
        }
566
567
444k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
444k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
444k
        return true;
577
444k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
112k
    {
561
112k
        if(cannot_insert( inserter, value_->end() ))
562
0
        {
563
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
0
            return false;
565
0
        }
566
567
112k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
112k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
112k
        return true;
577
112k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
954
    {
561
954
        if(cannot_insert( inserter, value_->end() ))
562
1
        {
563
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
1
            return false;
565
1
        }
566
567
953
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
953
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
953
        return true;
577
954
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
2.56k
    {
561
2.56k
        if(cannot_insert( inserter, value_->end() ))
562
3
        {
563
3
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
3
            return false;
565
3
        }
566
567
2.56k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
2.56k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
2.56k
        return true;
577
2.56k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_value(boost::system::error_code&)
Line
Count
Source
560
78.6k
    {
561
78.6k
        if(cannot_insert( inserter, value_->end() ))
562
0
        {
563
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
564
0
            return false;
565
0
        }
566
567
78.6k
        *inserter++ = std::move(this->next_value_);
568
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
569
# pragma GCC diagnostic push
570
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
571
#endif
572
78.6k
        this->next_value_ = {};
573
#if defined(__GNUC__) && __GNUC__ < 5 && !defined(__clang__)
574
# pragma GCC diagnostic pop
575
#endif
576
78.6k
        return true;
577
78.6k
    }
578
579
    bool signal_end(system::error_code& ec)
580
5.95k
    {
581
5.95k
        if(needs_more_elements( inserter, value_->end() ))
582
7
        {
583
7
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
7
            return false;
585
7
        }
586
587
5.95k
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
5.95k
        return converting_handler::composite_handler::signal_end(ec);
590
5.95k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
241
    {
581
241
        if(needs_more_elements( inserter, value_->end() ))
582
0
        {
583
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
0
            return false;
585
0
        }
586
587
241
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
241
        return converting_handler::composite_handler::signal_end(ec);
590
241
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
616
    {
581
616
        if(needs_more_elements( inserter, value_->end() ))
582
0
        {
583
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
0
            return false;
585
0
        }
586
587
616
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
616
        return converting_handler::composite_handler::signal_end(ec);
590
616
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
478
    {
581
478
        if(needs_more_elements( inserter, value_->end() ))
582
0
        {
583
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
0
            return false;
585
0
        }
586
587
478
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
478
        return converting_handler::composite_handler::signal_end(ec);
590
478
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
313
    {
581
313
        if(needs_more_elements( inserter, value_->end() ))
582
1
        {
583
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
1
            return false;
585
1
        }
586
587
312
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
312
        return converting_handler::composite_handler::signal_end(ec);
590
313
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
410
    {
581
410
        if(needs_more_elements( inserter, value_->end() ))
582
1
        {
583
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
1
            return false;
585
1
        }
586
587
409
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
409
        return converting_handler::composite_handler::signal_end(ec);
590
410
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
506
    {
581
506
        if(needs_more_elements( inserter, value_->end() ))
582
1
        {
583
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
1
            return false;
585
1
        }
586
587
505
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
505
        return converting_handler::composite_handler::signal_end(ec);
590
506
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
834
    {
581
834
        if(needs_more_elements( inserter, value_->end() ))
582
2
        {
583
2
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
2
            return false;
585
2
        }
586
587
832
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
832
        return converting_handler::composite_handler::signal_end(ec);
590
834
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
773
    {
581
773
        if(needs_more_elements( inserter, value_->end() ))
582
2
        {
583
2
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
2
            return false;
585
2
        }
586
587
771
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
771
        return converting_handler::composite_handler::signal_end(ec);
590
773
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
950
    {
581
950
        if(needs_more_elements( inserter, value_->end() ))
582
0
        {
583
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
0
            return false;
585
0
        }
586
587
950
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
950
        return converting_handler::composite_handler::signal_end(ec);
590
950
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::signal_end(boost::system::error_code&)
Line
Count
Source
580
836
    {
581
836
        if(needs_more_elements( inserter, value_->end() ))
582
0
        {
583
0
            BOOST_JSON_FAIL( ec, error::size_mismatch );
584
0
            return false;
585
0
        }
586
587
836
        inserter = detail::inserter(*value_, inserter_implementation<V>());
588
589
836
        return converting_handler::composite_handler::signal_end(ec);
590
836
    }
591
592
    bool on_array_begin( system::error_code& ec )
593
6.91k
    {
594
6.91k
        if( this->inner_active_ )
595
25
            return this->inner_.on_array_begin( ec );
596
597
6.89k
        this->inner_active_ = true;
598
6.89k
        clear_container( *value_, inserter_implementation<V>() );
599
6.89k
        return true;
600
6.91k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
301
    {
594
301
        if( this->inner_active_ )
595
1
            return this->inner_.on_array_begin( ec );
596
597
300
        this->inner_active_ = true;
598
300
        clear_container( *value_, inserter_implementation<V>() );
599
300
        return true;
600
301
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
730
    {
594
730
        if( this->inner_active_ )
595
4
            return this->inner_.on_array_begin( ec );
596
597
726
        this->inner_active_ = true;
598
726
        clear_container( *value_, inserter_implementation<V>() );
599
726
        return true;
600
730
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
642
    {
594
642
        if( this->inner_active_ )
595
2
            return this->inner_.on_array_begin( ec );
596
597
640
        this->inner_active_ = true;
598
640
        clear_container( *value_, inserter_implementation<V>() );
599
640
        return true;
600
642
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
338
    {
594
338
        if( this->inner_active_ )
595
1
            return this->inner_.on_array_begin( ec );
596
597
337
        this->inner_active_ = true;
598
337
        clear_container( *value_, inserter_implementation<V>() );
599
337
        return true;
600
338
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
528
    {
594
528
        if( this->inner_active_ )
595
2
            return this->inner_.on_array_begin( ec );
596
597
526
        this->inner_active_ = true;
598
526
        clear_container( *value_, inserter_implementation<V>() );
599
526
        return true;
600
528
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
644
    {
594
644
        if( this->inner_active_ )
595
1
            return this->inner_.on_array_begin( ec );
596
597
643
        this->inner_active_ = true;
598
643
        clear_container( *value_, inserter_implementation<V>() );
599
643
        return true;
600
644
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
905
    {
594
905
        if( this->inner_active_ )
595
5
            return this->inner_.on_array_begin( ec );
596
597
900
        this->inner_active_ = true;
598
900
        clear_container( *value_, inserter_implementation<V>() );
599
900
        return true;
600
905
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
815
    {
594
815
        if( this->inner_active_ )
595
1
            return this->inner_.on_array_begin( ec );
596
597
814
        this->inner_active_ = true;
598
814
        clear_container( *value_, inserter_implementation<V>() );
599
814
        return true;
600
815
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
1.07k
    {
594
1.07k
        if( this->inner_active_ )
595
7
            return this->inner_.on_array_begin( ec );
596
597
1.07k
        this->inner_active_ = true;
598
1.07k
        clear_container( *value_, inserter_implementation<V>() );
599
1.07k
        return true;
600
1.07k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
593
934
    {
594
934
        if( this->inner_active_ )
595
1
            return this->inner_.on_array_begin( ec );
596
597
933
        this->inner_active_ = true;
598
933
        clear_container( *value_, inserter_implementation<V>() );
599
933
        return true;
600
934
    }
601
602
    bool on_array_end( system::error_code& ec )
603
5.97k
    {
604
5.97k
        if( this->inner_active_ )
605
5.95k
            return this->inner_.on_array_end( ec );
606
607
15
        return this->parent_->signal_end(ec);
608
5.97k
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
241
    {
604
241
        if( this->inner_active_ )
605
241
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
241
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
616
    {
604
616
        if( this->inner_active_ )
605
616
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
616
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
478
    {
604
478
        if( this->inner_active_ )
605
478
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
478
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
313
    {
604
313
        if( this->inner_active_ )
605
313
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
313
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
410
    {
604
410
        if( this->inner_active_ )
605
410
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
410
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
506
    {
604
506
        if( this->inner_active_ )
605
506
            return this->inner_.on_array_end( ec );
606
607
0
        return this->parent_->signal_end(ec);
608
506
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
839
    {
604
839
        if( this->inner_active_ )
605
834
            return this->inner_.on_array_end( ec );
606
607
5
        return this->parent_->signal_end(ec);
608
839
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
778
    {
604
778
        if( this->inner_active_ )
605
773
            return this->inner_.on_array_end( ec );
606
607
5
        return this->parent_->signal_end(ec);
608
778
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
952
    {
604
952
        if( this->inner_active_ )
605
950
            return this->inner_.on_array_end( ec );
606
607
2
        return this->parent_->signal_end(ec);
608
952
    }
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::on_array_end(boost::system::error_code&)
Line
Count
Source
603
839
    {
604
839
        if( this->inner_active_ )
605
836
            return this->inner_.on_array_end( ec );
606
607
3
        return this->parent_->signal_end(ec);
608
839
    }
609
};
610
611
// map handler
612
template< class V, class P >
613
class converting_handler<map_like_conversion_tag, V, P>
614
    : public composite_handler<
615
        converting_handler<map_like_conversion_tag, V, P>,
616
        detail::mapped_type<V>,
617
        P,
618
        error::not_object>
619
{
620
private:
621
    V* value_;
622
    std::string key_;
623
624
public:
625
    converting_handler( V* v, P* p )
626
26.5k
        : converting_handler::composite_handler(p), value_(v)
627
26.5k
    {}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
626
8.84k
        : converting_handler::composite_handler(p), value_(v)
627
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
626
8.84k
        : converting_handler::composite_handler(p), value_(v)
627
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
626
8.84k
        : converting_handler::composite_handler(p), value_(v)
627
8.84k
    {}
628
629
    bool signal_value(system::error_code&)
630
23.5k
    {
631
23.5k
        value_->emplace( std::move(key_), std::move(this->next_value_) );
632
633
23.5k
        key_ = {};
634
23.5k
        this->next_value_ = {};
635
636
23.5k
        this->inner_active_ = false;
637
638
23.5k
        return true;
639
23.5k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
630
7.92k
    {
631
7.92k
        value_->emplace( std::move(key_), std::move(this->next_value_) );
632
633
7.92k
        key_ = {};
634
7.92k
        this->next_value_ = {};
635
636
7.92k
        this->inner_active_ = false;
637
638
7.92k
        return true;
639
7.92k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
630
12.2k
    {
631
12.2k
        value_->emplace( std::move(key_), std::move(this->next_value_) );
632
633
12.2k
        key_ = {};
634
12.2k
        this->next_value_ = {};
635
636
12.2k
        this->inner_active_ = false;
637
638
12.2k
        return true;
639
12.2k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
630
3.40k
    {
631
3.40k
        value_->emplace( std::move(key_), std::move(this->next_value_) );
632
633
3.40k
        key_ = {};
634
3.40k
        this->next_value_ = {};
635
636
3.40k
        this->inner_active_ = false;
637
638
3.40k
        return true;
639
3.40k
    }
640
641
    bool on_object_begin( system::error_code& ec )
642
3.24k
    {
643
3.24k
        if( this->inner_active_ )
644
3
            return this->inner_.on_object_begin(ec);
645
646
3.24k
        clear_container( *value_, inserter_implementation<V>() );
647
3.24k
        return true;
648
3.24k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
642
908
    {
643
908
        if( this->inner_active_ )
644
1
            return this->inner_.on_object_begin(ec);
645
646
907
        clear_container( *value_, inserter_implementation<V>() );
647
907
        return true;
648
908
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
642
787
    {
643
787
        if( this->inner_active_ )
644
1
            return this->inner_.on_object_begin(ec);
645
646
786
        clear_container( *value_, inserter_implementation<V>() );
647
786
        return true;
648
787
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
642
1.55k
    {
643
1.55k
        if( this->inner_active_ )
644
1
            return this->inner_.on_object_begin(ec);
645
646
1.54k
        clear_container( *value_, inserter_implementation<V>() );
647
1.54k
        return true;
648
1.55k
    }
649
650
    bool on_object_end(system::error_code& ec)
651
2.28k
    {
652
2.28k
        if( this->inner_active_ )
653
0
            return this->inner_.on_object_end(ec);
654
655
2.28k
        return this->parent_->signal_value(ec);
656
2.28k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Line
Count
Source
651
555
    {
652
555
        if( this->inner_active_ )
653
0
            return this->inner_.on_object_end(ec);
654
655
555
        return this->parent_->signal_value(ec);
656
555
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Line
Count
Source
651
487
    {
652
487
        if( this->inner_active_ )
653
0
            return this->inner_.on_object_end(ec);
654
655
487
        return this->parent_->signal_value(ec);
656
487
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Line
Count
Source
651
1.24k
    {
652
1.24k
        if( this->inner_active_ )
653
0
            return this->inner_.on_object_end(ec);
654
655
1.24k
        return this->parent_->signal_value(ec);
656
1.24k
    }
657
658
    bool on_array_end( system::error_code& ec )
659
0
    {
660
0
        if( this->inner_active_ )
661
0
            return this->inner_.on_array_end(ec);
662
663
0
        return this->parent_->signal_end(ec);
664
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
665
666
    bool on_key_part( system::error_code& ec, string_view sv )
667
1.05k
    {
668
1.05k
        if( this->inner_active_ )
669
0
            return this->inner_.on_key_part(ec, sv);
670
671
1.05k
        key_.append( sv.data(), sv.size() );
672
1.05k
        return true;
673
1.05k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
667
218
    {
668
218
        if( this->inner_active_ )
669
0
            return this->inner_.on_key_part(ec, sv);
670
671
218
        key_.append( sv.data(), sv.size() );
672
218
        return true;
673
218
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
667
327
    {
668
327
        if( this->inner_active_ )
669
0
            return this->inner_.on_key_part(ec, sv);
670
671
327
        key_.append( sv.data(), sv.size() );
672
327
        return true;
673
327
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
667
509
    {
668
509
        if( this->inner_active_ )
669
0
            return this->inner_.on_key_part(ec, sv);
670
671
509
        key_.append( sv.data(), sv.size() );
672
509
        return true;
673
509
    }
674
675
    bool on_key( system::error_code& ec, string_view sv )
676
23.7k
    {
677
23.7k
        if( this->inner_active_ )
678
0
            return this->inner_.on_key(ec, sv);
679
680
23.7k
        key_.append( sv.data(), sv.size() );
681
682
23.7k
        this->inner_active_ = true;
683
23.7k
        return true;
684
23.7k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
676
8.01k
    {
677
8.01k
        if( this->inner_active_ )
678
0
            return this->inner_.on_key(ec, sv);
679
680
8.01k
        key_.append( sv.data(), sv.size() );
681
682
8.01k
        this->inner_active_ = true;
683
8.01k
        return true;
684
8.01k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
676
3.44k
    {
677
3.44k
        if( this->inner_active_ )
678
0
            return this->inner_.on_key(ec, sv);
679
680
3.44k
        key_.append( sv.data(), sv.size() );
681
682
3.44k
        this->inner_active_ = true;
683
3.44k
        return true;
684
3.44k
    }
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
676
12.2k
    {
677
12.2k
        if( this->inner_active_ )
678
0
            return this->inner_.on_key(ec, sv);
679
680
12.2k
        key_.append( sv.data(), sv.size() );
681
682
12.2k
        this->inner_active_ = true;
683
12.2k
        return true;
684
12.2k
    }
685
};
686
687
// tuple handler
688
template<std::size_t I, class T>
689
struct handler_tuple_element
690
{
691
    template< class... Args >
692
    handler_tuple_element( Args&& ... args )
693
309k
        : t_( static_cast<Args&&>(args)... )
694
309k
    {}
boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<bool*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(bool*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<long*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(long*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<unsigned long*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(unsigned long*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<float*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(float*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<4ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<double*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(double*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<5ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<6ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::vector<bool, std::__1::allocator<bool> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::vector<bool, std::__1::allocator<bool> >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<7ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::vector<long, std::__1::allocator<long> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::vector<long, std::__1::allocator<long> >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<8ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<9ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::array<bool, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::array<bool, 3ul>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<10ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::array<long, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::array<long, 3ul>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<11ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::array<unsigned long, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::array<unsigned long, 3ul>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<12ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<13ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<14ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<15ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<bool*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(bool*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<unsigned long*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(unsigned long*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<long*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(long*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<double*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(double*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<4ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<16ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<std::__1::array<double, 3ul>*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(std::__1::array<double, 3ul>*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<decltype(nullptr)*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(decltype(nullptr)*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<17ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::handler_tuple_element<std::__1::vector<double, std::__1::allocator<double> >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&>(std::__1::vector<double, std::__1::allocator<double> >*&&, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<18ul, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<19ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::optional<bool>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::optional<bool>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<20ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::optional<long>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::optional<long>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<21ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::optional<unsigned long>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::optional<unsigned long>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<22ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::optional<double>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::optional<double>*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<23ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
boost::json::detail::handler_tuple_element<24ul, boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >::handler_tuple_element<void*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&>(void*&&, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*&)
Line
Count
Source
693
8.84k
        : t_( static_cast<Args&&>(args)... )
694
8.84k
    {}
695
696
    T t_;
697
};
698
699
template<std::size_t I, class T>
700
T&
701
get( handler_tuple_element<I, T>& e )
702
2.01M
{
703
2.01M
    return e.t_;
704
2.01M
}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
105
{
703
105
    return e.t_;
704
105
}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
314
{
703
314
    return e.t_;
704
314
}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
717
{
703
717
    return e.t_;
704
717
}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
9.39k
{
703
9.39k
    return e.t_;
704
9.39k
}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<4ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<4ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
3.00k
{
703
3.00k
    return e.t_;
704
3.00k
}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<5ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<5ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
2.47k
{
703
2.47k
    return e.t_;
704
2.47k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<6ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<6ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, std::__1::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
113k
{
703
113k
    return e.t_;
704
113k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<7ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<7ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, std::__1::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
386k
{
703
386k
    return e.t_;
704
386k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<8ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<8ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
68.6k
{
703
68.6k
    return e.t_;
704
68.6k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<9ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<9ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
1.62k
{
703
1.62k
    return e.t_;
704
1.62k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<10ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<10ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
2.29k
{
703
2.29k
    return e.t_;
704
2.29k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<11ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<11ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
2.83k
{
703
2.83k
    return e.t_;
704
2.83k
}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<12ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<12ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, long, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
17.7k
{
703
17.7k
    return e.t_;
704
17.7k
}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<13ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<13ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
9.72k
{
703
9.72k
    return e.t_;
704
9.72k
}
boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<14ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<14ul, boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
27.8k
{
703
27.8k
    return e.t_;
704
27.8k
}
boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
1.89k
{
703
1.89k
    return e.t_;
704
1.89k
}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
1.87k
{
703
1.87k
    return e.t_;
704
1.87k
}
boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
1.80k
{
703
1.80k
    return e.t_;
704
1.80k
}
boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<3ul, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
1.69k
{
703
1.69k
    return e.t_;
704
1.69k
}
boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<4ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<4ul, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
2.33k
{
703
2.33k
    return e.t_;
704
2.33k
}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<15ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<15ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
13.1k
{
703
13.1k
    return e.t_;
704
13.1k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
5.46k
{
703
5.46k
    return e.t_;
704
5.46k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
3.99k
{
703
3.99k
    return e.t_;
704
3.99k
}
boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<2ul, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<2ul, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
766
{
703
766
    return e.t_;
704
766
}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<16ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<16ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
11.9k
{
703
11.9k
    return e.t_;
704
11.9k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<0ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
83.1k
{
703
83.1k
    return e.t_;
704
83.1k
}
boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >& boost::json::detail::get<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::handler_tuple_element<1ul, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >&)
Line
Count
Source
702
446k
{
703
446k
    return e.t_;
704
446k
}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<17ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<17ul, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
531k
{
703
531k
    return e.t_;
704
531k
}
boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<18ul, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<18ul, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
10.6k
{
703
10.6k
    return e.t_;
704
10.6k
}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<19ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<19ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
886
{
703
886
    return e.t_;
704
886
}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<20ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<20ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
377
{
703
377
    return e.t_;
704
377
}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<21ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<21ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
1.25k
{
703
1.25k
    return e.t_;
704
1.25k
}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<22ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<22ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
546
{
703
546
    return e.t_;
704
546
}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<23ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<23ul, boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
2.42k
{
703
2.42k
    return e.t_;
704
2.42k
}
boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >& boost::json::detail::get<24ul, boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::handler_tuple_element<24ul, boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&)
Line
Count
Source
702
248k
{
703
248k
    return e.t_;
704
248k
}
705
706
template<
707
    class P,
708
    class LV,
709
    class S = mp11::make_index_sequence<mp11::mp_size<LV>::value> >
710
struct handler_tuple;
711
712
template< class P, template<class...> class L, class... V, std::size_t... I >
713
struct handler_tuple< P, L<V...>, mp11::index_sequence<I...> >
714
    : handler_tuple_element<I, V>
715
    ...
716
{
717
    handler_tuple( handler_tuple const& ) = delete;
718
    handler_tuple& operator=( handler_tuple const& ) = delete;
719
720
    template< class Access, class T >
721
    handler_tuple( Access access, T* pv, P* pp )
722
309k
        : handler_tuple_element<I, V>(
723
309k
            access( pv, mp11::mp_size_t<I>() ),
724
309k
            pp )
725
        ...
726
35.3k
    {}
_ZN5boost4json6detail13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS5_EEEENS_8describe6detail4listIJNS3_INS1_19bool_conversion_tagEbS8_EENS3_INS1_23integral_conversion_tagElS8_EENS3_ISE_mS8_EENS3_INS1_29floating_point_conversion_tagEfS8_EENS3_ISH_dS8_EENS3_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSL_11char_traitsIcEENSL_9allocatorIcEEEES8_EENS3_INS1_23sequence_conversion_tagENSL_6vectorIbNSP_IbEEEES8_EENS3_IST_NSU_IlNSP_IlEEEES8_EENS3_IST_NSU_ImNSP_ImEEEES8_EENS3_IST_NSL_5arrayIbLm3EEES8_EENS3_IST_NS14_IlLm3EEES8_EENS3_IST_NS14_ImLm3EEES8_EENS3_INS1_23map_like_conversion_tagENSL_3mapISR_lNSL_4lessISR_EENSP_INSL_4pairIKSR_lEEEEEES8_EENS3_IS1B_NS1C_ISR_SR_S1E_NSP_INS1F_IS1G_SR_EEEEEES8_EENS3_IS1B_NS1C_ISR_dS1E_NSP_INS1F_IS1G_dEEEEEES8_EENS3_INS1_20tuple_conversion_tagENSL_5tupleIJbmldSR_EEES8_EENS3_IS1T_NS1U_IJNS14_ISR_Lm3EEENS14_IdLm3EEEDnEEES8_EENS3_IS1T_NS1U_IJNSU_ISR_NSP_ISR_EEEENSU_IdNSP_IdEEEEEEES8_EENS3_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSR_EEES8_EENS3_INS1_23optional_conversion_tagENSL_8optionalIbEES8_EENS3_IS2C_NS2D_IlEES8_EENS3_IS2C_NS2D_ImEES8_EENS3_IS2C_NS2D_IdEES8_EENS3_IS2C_NS2D_ISR_EES8_EENS1_16ignoring_handlerIS8_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEC2INS1_15struct_accessorES5_EET_PT0_PS8_
Line
Count
Source
722
221k
        : handler_tuple_element<I, V>(
723
221k
            access( pv, mp11::mp_size_t<I>() ),
724
221k
            pp )
725
        ...
726
8.84k
    {}
boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >::handler_tuple<boost::json::detail::tuple_accessor, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(boost::json::detail::tuple_accessor, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
722
44.2k
        : handler_tuple_element<I, V>(
723
44.2k
            access( pv, mp11::mp_size_t<I>() ),
724
44.2k
            pp )
725
        ...
726
8.84k
    {}
boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >::handler_tuple<boost::json::detail::tuple_accessor, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)> >(boost::json::detail::tuple_accessor, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
722
26.5k
        : handler_tuple_element<I, V>(
723
26.5k
            access( pv, mp11::mp_size_t<I>() ),
724
26.5k
            pp )
725
        ...
726
8.84k
    {}
boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >::handler_tuple<boost::json::detail::tuple_accessor, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > > >(boost::json::detail::tuple_accessor, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >*)
Line
Count
Source
722
17.6k
        : handler_tuple_element<I, V>(
723
17.6k
            access( pv, mp11::mp_size_t<I>() ),
724
17.6k
            pp )
725
        ...
726
8.84k
    {}
727
};
728
729
#if defined(BOOST_MSVC) && BOOST_MSVC < 1910
730
731
template< class T >
732
struct tuple_element_list_impl
733
{
734
    template< class I >
735
    using tuple_element_helper = tuple_element_t<I::value, T>;
736
737
    using type = mp11::mp_transform<
738
        tuple_element_helper,
739
        mp11::mp_iota< std::tuple_size<T> > >;
740
};
741
template< class T >
742
using tuple_element_list = typename tuple_element_list_impl<T>::type;
743
744
#else
745
746
template< class I, class T >
747
using tuple_element_helper = tuple_element_t<I::value, T>;
748
template< class T >
749
using tuple_element_list = mp11::mp_transform_q<
750
    mp11::mp_bind_back< tuple_element_helper, T>,
751
    mp11::mp_iota< std::tuple_size<T> > >;
752
753
#endif
754
755
template< class Op, class... Args>
756
struct handler_op_invoker
757
{
758
public:
759
    std::tuple<Args&...> args;
760
761
    template< class Handler >
762
    bool
763
    operator()( Handler& handler ) const
764
542k
    {
765
542k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
542k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
4
    {
765
4
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.47k
    {
765
1.47k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.47k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.70k
    {
765
1.70k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.70k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.11k
    {
765
1.11k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.11k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.80k
    {
765
1.80k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.80k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
434k
    {
765
434k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
434k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
382
    {
765
382
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
382
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
90
    {
765
90
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
90
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
274
    {
765
274
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
274
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
3
    {
765
3
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
298
    {
765
298
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
298
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
4.99k
    {
765
4.99k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
4.99k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
4
    {
765
4
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
300
    {
765
300
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
300
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
5
    {
765
5
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
5
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
291
    {
765
291
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
291
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
4.57k
    {
765
4.57k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
4.57k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
6
    {
765
6
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
6
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
756
    {
765
756
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
756
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.87k
    {
765
1.87k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.87k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
3
    {
765
3
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
4
    {
765
4
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
686
    {
765
686
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
686
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.14k
    {
765
1.14k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.14k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2.41k
    {
765
2.41k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2.41k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
6
    {
765
6
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
6
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1.63k
    {
765
1.63k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1.63k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2.56k
    {
765
2.56k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2.56k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
78.6k
    {
765
78.6k
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
78.6k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
3
    {
765
3
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
1
    {
765
1
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Line
Count
Source
764
2
    {
765
2
        return (*this)( handler, mp11::index_sequence_for<Args...>() );
766
2
    }
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&) const
767
768
private:
769
    template< class Handler, std::size_t... I >
770
    bool
771
    operator()( Handler& handler, mp11::index_sequence<I...> ) const
772
542k
    {
773
542k
        return Op()( handler, std::get<I>(args)... );
774
542k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
4
    {
773
4
        return Op()( handler, std::get<I>(args)... );
774
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.47k
    {
773
1.47k
        return Op()( handler, std::get<I>(args)... );
774
1.47k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.70k
    {
773
1.70k
        return Op()( handler, std::get<I>(args)... );
774
1.70k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.11k
    {
773
1.11k
        return Op()( handler, std::get<I>(args)... );
774
1.11k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.80k
    {
773
1.80k
        return Op()( handler, std::get<I>(args)... );
774
1.80k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
434k
    {
773
434k
        return Op()( handler, std::get<I>(args)... );
774
434k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
382
    {
773
382
        return Op()( handler, std::get<I>(args)... );
774
382
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
90
    {
773
90
        return Op()( handler, std::get<I>(args)... );
774
90
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
274
    {
773
274
        return Op()( handler, std::get<I>(args)... );
774
274
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
3
    {
773
3
        return Op()( handler, std::get<I>(args)... );
774
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
298
    {
773
298
        return Op()( handler, std::get<I>(args)... );
774
298
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
4.99k
    {
773
4.99k
        return Op()( handler, std::get<I>(args)... );
774
4.99k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
4
    {
773
4
        return Op()( handler, std::get<I>(args)... );
774
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
300
    {
773
300
        return Op()( handler, std::get<I>(args)... );
774
300
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
5
    {
773
5
        return Op()( handler, std::get<I>(args)... );
774
5
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
291
    {
773
291
        return Op()( handler, std::get<I>(args)... );
774
291
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
4.57k
    {
773
4.57k
        return Op()( handler, std::get<I>(args)... );
774
4.57k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
6
    {
773
6
        return Op()( handler, std::get<I>(args)... );
774
6
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
756
    {
773
756
        return Op()( handler, std::get<I>(args)... );
774
756
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.87k
    {
773
1.87k
        return Op()( handler, std::get<I>(args)... );
774
1.87k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
3
    {
773
3
        return Op()( handler, std::get<I>(args)... );
774
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
4
    {
773
4
        return Op()( handler, std::get<I>(args)... );
774
4
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
686
    {
773
686
        return Op()( handler, std::get<I>(args)... );
774
686
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.14k
    {
773
1.14k
        return Op()( handler, std::get<I>(args)... );
774
1.14k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2.41k
    {
773
2.41k
        return Op()( handler, std::get<I>(args)... );
774
2.41k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
6
    {
773
6
        return Op()( handler, std::get<I>(args)... );
774
6
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1.63k
    {
773
1.63k
        return Op()( handler, std::get<I>(args)... );
774
1.63k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2.56k
    {
773
2.56k
        return Op()( handler, std::get<I>(args)... );
774
2.56k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
78.6k
    {
773
78.6k
        return Op()( handler, std::get<I>(args)... );
774
78.6k
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Line
Count
Source
772
3
    {
773
3
        return Op()( handler, std::get<I>(args)... );
774
3
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
1
    {
773
1
        return Op()( handler, std::get<I>(args)... );
774
1
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Line
Count
Source
772
2
    {
773
2
        return Op()( handler, std::get<I>(args)... );
774
2
    }
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul, 1ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code>::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, 0ul>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::mp11::integer_sequence<unsigned long, 0ul>) const
775
};
776
777
template< class Handlers, class F >
778
struct tuple_handler_op_invoker
779
{
780
    Handlers& handlers;
781
    F fn;
782
783
    template< class I >
784
    bool
785
    operator()( I ) const
786
2.00M
    {
787
2.00M
        return fn( get<I::value>(handlers) );
788
2.00M
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
8
    {
787
8
        return fn( get<I::value>(handlers) );
788
8
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_number_partERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
69
    {
787
69
        return fn( get<I::value>(handlers) );
788
69
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
223
    {
787
223
        return fn( get<I::value>(handlers) );
788
223
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
501
    {
787
501
        return fn( get<I::value>(handlers) );
788
501
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
9.12k
    {
787
9.12k
        return fn( get<I::value>(handlers) );
788
9.12k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
2.48k
    {
787
2.48k
        return fn( get<I::value>(handlers) );
788
2.48k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
385k
    {
787
385k
        return fn( get<I::value>(handlers) );
788
385k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
66.9k
    {
787
66.9k
        return fn( get<I::value>(handlers) );
788
66.9k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
1.24k
    {
787
1.24k
        return fn( get<I::value>(handlers) );
788
1.24k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
1.46k
    {
787
1.46k
        return fn( get<I::value>(handlers) );
788
1.46k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
7.92k
    {
787
7.92k
        return fn( get<I::value>(handlers) );
788
7.92k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
12.0k
    {
787
12.0k
        return fn( get<I::value>(handlers) );
788
12.0k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
4.30k
    {
787
4.30k
        return fn( get<I::value>(handlers) );
788
4.30k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1.47k
    {
787
1.47k
        return fn( get<I::value>(handlers) );
788
1.47k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1.70k
    {
787
1.70k
        return fn( get<I::value>(handlers) );
788
1.70k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1.11k
    {
787
1.11k
        return fn( get<I::value>(handlers) );
788
1.11k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
1.80k
    {
787
1.80k
        return fn( get<I::value>(handlers) );
788
1.80k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1.80k
    {
787
1.80k
        return fn( get<I::value>(handlers) );
788
1.80k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
434k
    {
787
434k
        return fn( get<I::value>(handlers) );
788
434k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64, boost::system::error_code, long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
434k
    {
787
434k
        return fn( get<I::value>(handlers) );
788
434k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
8.15k
    {
787
8.15k
        return fn( get<I::value>(handlers) );
788
8.15k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
82
    {
787
82
        return fn( get<I::value>(handlers) );
788
82
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
874
    {
787
874
        return fn( get<I::value>(handlers) );
788
874
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
73
    {
787
73
        return fn( get<I::value>(handlers) );
788
73
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_8on_int64ERNS_6system10error_codeElEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
205k
    {
787
205k
        return fn( get<I::value>(handlers) );
788
205k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
82
    {
787
82
        return fn( get<I::value>(handlers) );
788
82
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
206
    {
787
206
        return fn( get<I::value>(handlers) );
788
206
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
64
    {
787
64
        return fn( get<I::value>(handlers) );
788
64
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
230
    {
787
230
        return fn( get<I::value>(handlers) );
788
230
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
55
    {
787
55
        return fn( get<I::value>(handlers) );
788
55
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
493
    {
787
493
        return fn( get<I::value>(handlers) );
788
493
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
94
    {
787
94
        return fn( get<I::value>(handlers) );
788
94
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
202
    {
787
202
        return fn( get<I::value>(handlers) );
788
202
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
74
    {
787
74
        return fn( get<I::value>(handlers) );
788
74
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
43
    {
787
43
        return fn( get<I::value>(handlers) );
788
43
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
752
    {
787
752
        return fn( get<I::value>(handlers) );
788
752
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
382
    {
787
382
        return fn( get<I::value>(handlers) );
788
382
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
90
    {
787
90
        return fn( get<I::value>(handlers) );
788
90
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
274
    {
787
274
        return fn( get<I::value>(handlers) );
788
274
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
303
    {
787
303
        return fn( get<I::value>(handlers) );
788
303
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
298
    {
787
298
        return fn( get<I::value>(handlers) );
788
298
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
4.99k
    {
787
4.99k
        return fn( get<I::value>(handlers) );
788
4.99k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64, boost::system::error_code, unsigned long&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
4.99k
    {
787
4.99k
        return fn( get<I::value>(handlers) );
788
4.99k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
255
    {
787
255
        return fn( get<I::value>(handlers) );
788
255
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
94
    {
787
94
        return fn( get<I::value>(handlers) );
788
94
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
289
    {
787
289
        return fn( get<I::value>(handlers) );
788
289
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
189
    {
787
189
        return fn( get<I::value>(handlers) );
788
189
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_uint64ERNS_6system10error_codeEmEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
546
    {
787
546
        return fn( get<I::value>(handlers) );
788
546
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
198
    {
787
198
        return fn( get<I::value>(handlers) );
788
198
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
290
    {
787
290
        return fn( get<I::value>(handlers) );
788
290
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
200
    {
787
200
        return fn( get<I::value>(handlers) );
788
200
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
314
    {
787
314
        return fn( get<I::value>(handlers) );
788
314
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
300
    {
787
300
        return fn( get<I::value>(handlers) );
788
300
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
5
    {
787
5
        return fn( get<I::value>(handlers) );
788
5
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
296
    {
787
296
        return fn( get<I::value>(handlers) );
788
296
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
291
    {
787
291
        return fn( get<I::value>(handlers) );
788
291
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
4.58k
    {
787
4.58k
        return fn( get<I::value>(handlers) );
788
4.58k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double, boost::system::error_code, double&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
4.57k
    {
787
4.57k
        return fn( get<I::value>(handlers) );
788
4.57k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
360
    {
787
360
        return fn( get<I::value>(handlers) );
788
360
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
212
    {
787
212
        return fn( get<I::value>(handlers) );
788
212
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_doubleERNS_6system10error_codeEdEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
19.4k
    {
787
19.4k
        return fn( get<I::value>(handlers) );
788
19.4k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
767
    {
787
767
        return fn( get<I::value>(handlers) );
788
767
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
6
    {
787
6
        return fn( get<I::value>(handlers) );
788
6
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
756
    {
787
756
        return fn( get<I::value>(handlers) );
788
756
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
6
    {
787
6
        return fn( get<I::value>(handlers) );
788
6
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
812
    {
787
812
        return fn( get<I::value>(handlers) );
788
812
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
194
    {
787
194
        return fn( get<I::value>(handlers) );
788
194
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
83
    {
787
83
        return fn( get<I::value>(handlers) );
788
83
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
66
    {
787
66
        return fn( get<I::value>(handlers) );
788
66
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
616
    {
787
616
        return fn( get<I::value>(handlers) );
788
616
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_nullERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
338
    {
787
338
        return fn( get<I::value>(handlers) );
788
338
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
96
    {
787
96
        return fn( get<I::value>(handlers) );
788
96
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
112k
    {
787
112k
        return fn( get<I::value>(handlers) );
788
112k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
955
    {
787
955
        return fn( get<I::value>(handlers) );
788
955
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
1.88k
    {
787
1.88k
        return fn( get<I::value>(handlers) );
788
1.88k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1.87k
    {
787
1.87k
        return fn( get<I::value>(handlers) );
788
1.87k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
8
    {
787
8
        return fn( get<I::value>(handlers) );
788
8
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool, boost::system::error_code, bool&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
268
    {
787
268
        return fn( get<I::value>(handlers) );
788
268
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
66
    {
787
66
        return fn( get<I::value>(handlers) );
788
66
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_7on_boolERNS_6system10error_codeEbEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
709
    {
787
709
        return fn( get<I::value>(handlers) );
788
709
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS32_
Line
Count
Source
786
1.67k
    {
787
1.67k
        return fn( get<I::value>(handlers) );
788
1.67k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS32_
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS32_
Line
Count
Source
786
1.25k
    {
787
1.25k
        return fn( get<I::value>(handlers) );
788
1.25k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS32_
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS32_
Line
Count
Source
786
693
    {
787
693
        return fn( get<I::value>(handlers) );
788
693
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
686
    {
787
686
        return fn( get<I::value>(handlers) );
788
686
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS32_
Line
Count
Source
786
1.14k
    {
787
1.14k
        return fn( get<I::value>(handlers) );
788
1.14k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1.14k
    {
787
1.14k
        return fn( get<I::value>(handlers) );
788
1.14k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS32_
Line
Count
Source
786
2.42k
    {
787
2.42k
        return fn( get<I::value>(handlers) );
788
2.42k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2.41k
    {
787
2.41k
        return fn( get<I::value>(handlers) );
788
2.41k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS32_
Line
Count
Source
786
983
    {
787
983
        return fn( get<I::value>(handlers) );
788
983
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS32_
Line
Count
Source
786
751
    {
787
751
        return fn( get<I::value>(handlers) );
788
751
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_string_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS32_
Line
Count
Source
786
8.39k
    {
787
8.39k
        return fn( get<I::value>(handlers) );
788
8.39k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS32_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS32_
Line
Count
Source
786
218
    {
787
218
        return fn( get<I::value>(handlers) );
788
218
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS32_
Line
Count
Source
786
327
    {
787
327
        return fn( get<I::value>(handlers) );
788
327
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS32_
Line
Count
Source
786
509
    {
787
509
        return fn( get<I::value>(handlers) );
788
509
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS32_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_11on_key_partERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS32_
Line
Count
Source
786
2.46k
    {
787
2.46k
        return fn( get<I::value>(handlers) );
788
2.46k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS32_
Line
Count
Source
786
787
    {
787
787
        return fn( get<I::value>(handlers) );
788
787
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS32_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS32_
Line
Count
Source
786
3.40k
    {
787
3.40k
        return fn( get<I::value>(handlers) );
788
3.40k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS32_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS32_
Line
Count
Source
786
1.64k
    {
787
1.64k
        return fn( get<I::value>(handlers) );
788
1.64k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
6
    {
787
6
        return fn( get<I::value>(handlers) );
788
6
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
1.63k
    {
787
1.63k
        return fn( get<I::value>(handlers) );
788
1.63k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS32_
Line
Count
Source
786
2.57k
    {
787
2.57k
        return fn( get<I::value>(handlers) );
788
2.57k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2.56k
    {
787
2.56k
        return fn( get<I::value>(handlers) );
788
2.56k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS32_
Line
Count
Source
786
78.6k
    {
787
78.6k
        return fn( get<I::value>(handlers) );
788
78.6k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
78.6k
    {
787
78.6k
        return fn( get<I::value>(handlers) );
788
78.6k
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS32_
Line
Count
Source
786
589
    {
787
589
        return fn( get<I::value>(handlers) );
788
589
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS32_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS32_
Line
Count
Source
786
1.04k
    {
787
1.04k
        return fn( get<I::value>(handlers) );
788
1.04k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_9on_stringERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS32_
Line
Count
Source
786
2.05k
    {
787
2.05k
        return fn( get<I::value>(handlers) );
788
2.05k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
301
    {
787
301
        return fn( get<I::value>(handlers) );
788
301
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
730
    {
787
730
        return fn( get<I::value>(handlers) );
788
730
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
642
    {
787
642
        return fn( get<I::value>(handlers) );
788
642
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
338
    {
787
338
        return fn( get<I::value>(handlers) );
788
338
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
528
    {
787
528
        return fn( get<I::value>(handlers) );
788
528
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
644
    {
787
644
        return fn( get<I::value>(handlers) );
788
644
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
1.90k
    {
787
1.90k
        return fn( get<I::value>(handlers) );
788
1.90k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
2.64k
    {
787
2.64k
        return fn( get<I::value>(handlers) );
788
2.64k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
3.10k
    {
787
3.10k
        return fn( get<I::value>(handlers) );
788
3.10k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
5
    {
787
5
        return fn( get<I::value>(handlers) );
788
5
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_14on_array_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
3.69k
    {
787
3.69k
        return fn( get<I::value>(handlers) );
788
3.69k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
241
    {
787
241
        return fn( get<I::value>(handlers) );
788
241
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
616
    {
787
616
        return fn( get<I::value>(handlers) );
788
616
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
478
    {
787
478
        return fn( get<I::value>(handlers) );
788
478
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
313
    {
787
313
        return fn( get<I::value>(handlers) );
788
313
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
410
    {
787
410
        return fn( get<I::value>(handlers) );
788
410
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
506
    {
787
506
        return fn( get<I::value>(handlers) );
788
506
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
1.60k
    {
787
1.60k
        return fn( get<I::value>(handlers) );
788
1.60k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
2.36k
    {
787
2.36k
        return fn( get<I::value>(handlers) );
788
2.36k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
2.60k
    {
787
2.60k
        return fn( get<I::value>(handlers) );
788
2.60k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_12on_array_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
1.44k
    {
787
1.44k
        return fn( get<I::value>(handlers) );
788
1.44k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
Line
Count
Source
786
3
    {
787
3
        return fn( get<I::value>(handlers) );
788
3
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
908
    {
787
908
        return fn( get<I::value>(handlers) );
788
908
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
787
    {
787
787
        return fn( get<I::value>(handlers) );
788
787
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
1.55k
    {
787
1.55k
        return fn( get<I::value>(handlers) );
788
1.55k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Line
Count
Source
786
7
    {
787
7
        return fn( get<I::value>(handlers) );
788
7
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Line
Count
Source
786
6
    {
787
6
        return fn( get<I::value>(handlers) );
788
6
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
786
2
    {
787
2
        return fn( get<I::value>(handlers) );
788
2
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Line
Count
Source
786
4
    {
787
4
        return fn( get<I::value>(handlers) );
788
4
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
Line
Count
Source
786
1
    {
787
1
        return fn( get<I::value>(handlers) );
788
1
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_15on_object_beginERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
1.71k
    {
787
1.71k
        return fn( get<I::value>(handlers) );
788
1.71k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS32_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS32_
Line
Count
Source
786
8.01k
    {
787
8.01k
        return fn( get<I::value>(handlers) );
788
8.01k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS32_
Line
Count
Source
786
3.44k
    {
787
3.44k
        return fn( get<I::value>(handlers) );
788
3.44k
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS32_
Line
Count
Source
786
12.2k
    {
787
12.2k
        return fn( get<I::value>(handlers) );
788
12.2k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS32_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key, boost::system::error_code, boost::core::basic_string_view<char>&> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS32_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS32_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_6on_keyERNS_6system10error_codeENS_4core17basic_string_viewIcEEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS32_
Line
Count
Source
786
1.02k
    {
787
1.02k
        return fn( get<I::value>(handlers) );
788
1.02k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm0EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm1EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm2EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm3EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm4EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm5EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm6EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm7EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm8EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm9EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm10EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm11EEEEEbS2Z_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm12EEEEEbS2Z_
Line
Count
Source
786
555
    {
787
555
        return fn( get<I::value>(handlers) );
788
555
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm13EEEEEbS2Z_
Line
Count
Source
786
487
    {
787
487
        return fn( get<I::value>(handlers) );
788
487
    }
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm14EEEEEbS2Z_
Line
Count
Source
786
1.24k
    {
787
1.24k
        return fn( get<I::value>(handlers) );
788
1.24k
    }
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm15EEEEEbS2Z_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm16EEEEEbS2Z_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul, 2ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm17EEEEEbS2Z_
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Unexecuted instantiation: bool boost::json::detail::tuple_handler_op_invoker<boost::json::detail::handler_tuple<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >, boost::mp11::mp_list<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >, boost::mp11::integer_sequence<unsigned long, 0ul, 1ul> >, boost::json::detail::handler_op_invoker<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end, boost::system::error_code> >::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm18EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm19EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm20EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm21EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm22EEEEEbS2Z_
Unexecuted instantiation: _ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm23EEEEEbS2Z_
_ZNK5boost4json6detail24tuple_handler_op_invokerINS1_13handler_tupleINS1_18converting_handlerINS1_30described_class_conversion_tagE6ObjectNS1_12into_handlerIS6_EEEENS_8describe6detail4listIJNS4_INS1_19bool_conversion_tagEbS9_EENS4_INS1_23integral_conversion_tagElS9_EENS4_ISF_mS9_EENS4_INS1_29floating_point_conversion_tagEfS9_EENS4_ISI_dS9_EENS4_INS1_26string_like_conversion_tagENSt3__112basic_stringIcNSM_11char_traitsIcEENSM_9allocatorIcEEEES9_EENS4_INS1_23sequence_conversion_tagENSM_6vectorIbNSQ_IbEEEES9_EENS4_ISU_NSV_IlNSQ_IlEEEES9_EENS4_ISU_NSV_ImNSQ_ImEEEES9_EENS4_ISU_NSM_5arrayIbLm3EEES9_EENS4_ISU_NS15_IlLm3EEES9_EENS4_ISU_NS15_ImLm3EEES9_EENS4_INS1_23map_like_conversion_tagENSM_3mapISS_lNSM_4lessISS_EENSQ_INSM_4pairIKSS_lEEEEEES9_EENS4_IS1C_NS1D_ISS_SS_S1F_NSQ_INS1G_IS1H_SS_EEEEEES9_EENS4_IS1C_NS1D_ISS_dS1F_NSQ_INS1G_IS1H_dEEEEEES9_EENS4_INS1_20tuple_conversion_tagENSM_5tupleIJbmldSS_EEES9_EENS4_IS1U_NS1V_IJNS15_ISS_Lm3EEENS15_IdLm3EEEDnEEES9_EENS4_IS1U_NS1V_IJNSV_ISS_NSQ_ISS_EEEENSV_IdNSQ_IdEEEEEEES9_EENS4_INS1_22variant_conversion_tagENS_8variant27variantIJbmldSS_EEES9_EENS4_INS1_23optional_conversion_tagENSM_8optionalIbEES9_EENS4_IS2D_NS2E_IlEES9_EENS4_IS2D_NS2E_ImEES9_EENS4_IS2D_NS2E_IdEES9_EENS4_IS2D_NS2E_ISS_EES9_EENS1_16ignoring_handlerIS9_EEEEENS_4mp1116integer_sequenceImJLm0ELm1ELm2ELm3ELm4ELm5ELm6ELm7ELm8ELm9ELm10ELm11ELm12ELm13ELm14ELm15ELm16ELm17ELm18ELm19ELm20ELm21ELm22ELm23ELm24EEEEEEZNS9_13on_object_endERNS_6system10error_codeEEUlRT_E_EclINSM_17integral_constantImLm24EEEEEbS2Z_
Line
Count
Source
786
1.14k
    {
787
1.14k
        return fn( get<I::value>(handlers) );
788
1.14k
    }
789
};
790
791
struct tuple_accessor
792
{
793
    template< class T, class I >
794
    auto operator()( T* t, I ) const -> tuple_element_t<I::value, T>*
795
88.4k
    {
796
88.4k
        using std::get;
797
88.4k
        return &get<I::value>(*t);
798
88.4k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 0ul>::value, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::integral_constant<unsigned long, 0ul> >(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 1ul>::value, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::integral_constant<unsigned long, 1ul> >(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 2ul>::value, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::integral_constant<unsigned long, 2ul> >(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 3ul>::value, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::integral_constant<unsigned long, 3ul> >(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 4ul>::value, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::integral_constant<unsigned long, 4ul> >(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 0ul>::value, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)> >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, std::__1::integral_constant<unsigned long, 0ul> >(std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 1ul>::value, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)> >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, std::__1::integral_constant<unsigned long, 1ul> >(std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 2ul>::value, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)> >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, std::__1::integral_constant<unsigned long, 2ul> >(std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 0ul>::value, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, std::__1::integral_constant<unsigned long, 0ul> >(std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*, std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
std::__1::tuple_element<std::__1::integral_constant<unsigned long, 1ul>::value, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > > >::type* boost::json::detail::tuple_accessor::operator()<std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, std::__1::integral_constant<unsigned long, 1ul> >(std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*, std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
795
8.84k
    {
796
8.84k
        using std::get;
797
8.84k
        return &get<I::value>(*t);
798
8.84k
    }
799
};
800
801
template< class T, class P >
802
class converting_handler<tuple_conversion_tag, T, P>
803
{
804
805
private:
806
    using ElementTypes = tuple_element_list<T>;
807
808
    template<class V>
809
    using ElementHandler = get_handler<V, converting_handler>;
810
    using InnerHandlers = mp11::mp_transform<ElementHandler, ElementTypes>;
811
    using HandlerTuple = handler_tuple<converting_handler, InnerHandlers>;
812
813
    T* value_;
814
    P* parent_;
815
816
    HandlerTuple handlers_;
817
    int inner_active_ = -1;
818
819
public:
820
    converting_handler( converting_handler const& ) = delete;
821
    converting_handler& operator=( converting_handler const& ) = delete;
822
823
    converting_handler( T* v, P* p )
824
26.5k
        : value_(v) , parent_(p) , handlers_(tuple_accessor(), v, this)
825
26.5k
    {}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
824
8.84k
        : value_(v) , parent_(p) , handlers_(tuple_accessor(), v, this)
825
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
824
8.84k
        : value_(v) , parent_(p) , handlers_(tuple_accessor(), v, this)
825
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
824
8.84k
        : value_(v) , parent_(p) , handlers_(tuple_accessor(), v, this)
825
8.84k
    {}
826
827
    bool signal_value(system::error_code&)
828
12.8k
    {
829
12.8k
        ++inner_active_;
830
12.8k
        return true;
831
12.8k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
828
8.73k
    {
829
8.73k
        ++inner_active_;
830
8.73k
        return true;
831
8.73k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
828
2.35k
    {
829
2.35k
        ++inner_active_;
830
2.35k
        return true;
831
2.35k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
828
1.78k
    {
829
1.78k
        ++inner_active_;
830
1.78k
        return true;
831
1.78k
    }
832
833
    bool signal_end(system::error_code& ec)
834
3.18k
    {
835
3.18k
        constexpr int N = std::tuple_size<T>::value;
836
3.18k
        if( inner_active_ < N )
837
21
        {
838
21
            BOOST_JSON_FAIL( ec, error::size_mismatch );
839
21
            return false;
840
21
        }
841
842
3.16k
        inner_active_ = -1;
843
3.16k
        return parent_->signal_value(ec);
844
3.18k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
834
1.60k
    {
835
1.60k
        constexpr int N = std::tuple_size<T>::value;
836
1.60k
        if( inner_active_ < N )
837
5
        {
838
5
            BOOST_JSON_FAIL( ec, error::size_mismatch );
839
5
            return false;
840
5
        }
841
842
1.60k
        inner_active_ = -1;
843
1.60k
        return parent_->signal_value(ec);
844
1.60k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
834
754
    {
835
754
        constexpr int N = std::tuple_size<T>::value;
836
754
        if( inner_active_ < N )
837
11
        {
838
11
            BOOST_JSON_FAIL( ec, error::size_mismatch );
839
11
            return false;
840
11
        }
841
842
743
        inner_active_ = -1;
843
743
        return parent_->signal_value(ec);
844
754
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Line
Count
Source
834
823
    {
835
823
        constexpr int N = std::tuple_size<T>::value;
836
823
        if( inner_active_ < N )
837
5
        {
838
5
            BOOST_JSON_FAIL( ec, error::size_mismatch );
839
5
            return false;
840
5
        }
841
842
818
        inner_active_ = -1;
843
818
        return parent_->signal_value(ec);
844
823
    }
845
846
#define BOOST_JSON_HANDLE_EVENT(fn) \
847
    struct do_ ## fn \
848
    { \
849
        template< class H, class... Args > \
850
        bool operator()( H& h, Args& ... args ) const \
851
542k
        { \
852
542k
            return h. fn (args...); \
853
542k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_number_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
4
        { \
852
4
            return h. fn (args...); \
853
4
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1.47k
        { \
852
1.47k
            return h. fn (args...); \
853
1.47k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1.70k
        { \
852
1.70k
            return h. fn (args...); \
853
1.70k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1.11k
        { \
852
1.11k
            return h. fn (args...); \
853
1.11k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1.80k
        { \
852
1.80k
            return h. fn (args...); \
853
1.80k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_int64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, long&) const
Line
Count
Source
851
434k
        { \
852
434k
            return h. fn (args...); \
853
434k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
382
        { \
852
382
            return h. fn (args...); \
853
382
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
90
        { \
852
90
            return h. fn (args...); \
853
90
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
274
        { \
852
274
            return h. fn (args...); \
853
274
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
3
        { \
852
3
            return h. fn (args...); \
853
3
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
298
        { \
852
298
            return h. fn (args...); \
853
298
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_uint64::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, unsigned long>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, unsigned long&) const
Line
Count
Source
851
4.99k
        { \
852
4.99k
            return h. fn (args...); \
853
4.99k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
4
        { \
852
4
            return h. fn (args...); \
853
4
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
300
        { \
852
300
            return h. fn (args...); \
853
300
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
5
        { \
852
5
            return h. fn (args...); \
853
5
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
291
        { \
852
291
            return h. fn (args...); \
853
291
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_double::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, double>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, double&) const
Line
Count
Source
851
4.57k
        { \
852
4.57k
            return h. fn (args...); \
853
4.57k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
6
        { \
852
6
            return h. fn (args...); \
853
6
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
756
        { \
852
756
            return h. fn (args...); \
853
756
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_null::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
1.87k
        { \
852
1.87k
            return h. fn (args...); \
853
1.87k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
3
        { \
852
3
            return h. fn (args...); \
853
3
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_bool::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, bool>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, bool&) const
Line
Count
Source
851
4
        { \
852
4
            return h. fn (args...); \
853
4
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
686
        { \
852
686
            return h. fn (args...); \
853
686
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1.14k
        { \
852
1.14k
            return h. fn (args...); \
853
1.14k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
2.41k
        { \
852
2.41k
            return h. fn (args...); \
853
2.41k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key_part::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
6
        { \
852
6
            return h. fn (args...); \
853
6
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1.63k
        { \
852
1.63k
            return h. fn (args...); \
853
1.63k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
2.56k
        { \
852
2.56k
            return h. fn (args...); \
853
2.56k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
78.6k
        { \
852
78.6k
            return h. fn (args...); \
853
78.6k
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_string::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Line
Count
Source
851
3
        { \
852
3
            return h. fn (args...); \
853
3
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
1
        { \
852
1
            return h. fn (args...); \
853
1
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_begin::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Line
Count
Source
851
2
        { \
852
2
            return h. fn (args...); \
853
2
        } \
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_key::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code, boost::core::basic_string_view<char> >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&, boost::core::basic_string_view<char>&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<double, 3ul>, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::null_like_conversion_tag, decltype(nullptr), boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_object_end::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >, boost::system::error_code>(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<double, std::__1::allocator<double> >, boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >&, boost::system::error_code&) const
854
    }; \
855
       \
856
    template< class... Args > \
857
    bool fn( system::error_code& ec, Args&& ... args ) \
858
542k
    { \
859
542k
        if( inner_active_ < 0 ) \
860
542k
        { \
861
30
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
30
            return false; \
863
30
        } \
864
542k
        constexpr int N = std::tuple_size<T>::value; \
865
542k
        if( inner_active_ >= N ) \
866
542k
        { \
867
31
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
31
            return false; \
869
31
        } \
870
542k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
542k
        using H = decltype(handlers_); \
872
542k
        return mp11::mp_with_index<N>( \
873
542k
            inner_active_, \
874
542k
            tuple_handler_op_invoker<H, F>{ \
875
542k
                handlers_, \
876
542k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
542k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part<>(boost::system::error_code&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part<>(boost::system::error_code&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part<>(boost::system::error_code&)
Line
Count
Source
858
8
    { \
859
8
        if( inner_active_ < 0 ) \
860
8
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
8
        constexpr int N = std::tuple_size<T>::value; \
865
7
        if( inner_active_ >= N ) \
866
7
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
7
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
6
        using H = decltype(handlers_); \
872
6
        return mp11::mp_with_index<N>( \
873
6
            inner_active_, \
874
6
            tuple_handler_op_invoker<H, F>{ \
875
6
                handlers_, \
876
6
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
7
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64<long&>(boost::system::error_code&, long&)
Line
Count
Source
858
4.30k
    { \
859
4.30k
        if( inner_active_ < 0 ) \
860
4.30k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
4.30k
        constexpr int N = std::tuple_size<T>::value; \
865
4.29k
        if( inner_active_ >= N ) \
866
4.29k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
4.29k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
4.29k
        using H = decltype(handlers_); \
872
4.29k
        return mp11::mp_with_index<N>( \
873
4.29k
            inner_active_, \
874
4.29k
            tuple_handler_op_invoker<H, F>{ \
875
4.29k
                handlers_, \
876
4.29k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
4.29k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64<long&>(boost::system::error_code&, long&)
Line
Count
Source
858
1.80k
    { \
859
1.80k
        if( inner_active_ < 0 ) \
860
1.80k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
1.80k
        constexpr int N = std::tuple_size<T>::value; \
865
1.80k
        if( inner_active_ >= N ) \
866
1.80k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
1.80k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
1.80k
        using H = decltype(handlers_); \
872
1.80k
        return mp11::mp_with_index<N>( \
873
1.80k
            inner_active_, \
874
1.80k
            tuple_handler_op_invoker<H, F>{ \
875
1.80k
                handlers_, \
876
1.80k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
1.80k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64<long&>(boost::system::error_code&, long&)
Line
Count
Source
858
434k
    { \
859
434k
        if( inner_active_ < 0 ) \
860
434k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
434k
        constexpr int N = std::tuple_size<T>::value; \
865
434k
        if( inner_active_ >= N ) \
866
434k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
434k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
434k
        using H = decltype(handlers_); \
872
434k
        return mp11::mp_with_index<N>( \
873
434k
            inner_active_, \
874
434k
            tuple_handler_op_invoker<H, F>{ \
875
434k
                handlers_, \
876
434k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
434k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64<unsigned long&>(boost::system::error_code&, unsigned long&)
Line
Count
Source
858
752
    { \
859
752
        if( inner_active_ < 0 ) \
860
752
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
752
        constexpr int N = std::tuple_size<T>::value; \
865
751
        if( inner_active_ >= N ) \
866
751
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
751
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
750
        using H = decltype(handlers_); \
872
750
        return mp11::mp_with_index<N>( \
873
750
            inner_active_, \
874
750
            tuple_handler_op_invoker<H, F>{ \
875
750
                handlers_, \
876
750
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
751
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64<unsigned long&>(boost::system::error_code&, unsigned long&)
Line
Count
Source
858
303
    { \
859
303
        if( inner_active_ < 0 ) \
860
303
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
303
        constexpr int N = std::tuple_size<T>::value; \
865
302
        if( inner_active_ >= N ) \
866
302
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
302
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
301
        using H = decltype(handlers_); \
872
301
        return mp11::mp_with_index<N>( \
873
301
            inner_active_, \
874
301
            tuple_handler_op_invoker<H, F>{ \
875
301
                handlers_, \
876
301
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
302
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64<unsigned long&>(boost::system::error_code&, unsigned long&)
Line
Count
Source
858
4.99k
    { \
859
4.99k
        if( inner_active_ < 0 ) \
860
4.99k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
4.99k
        constexpr int N = std::tuple_size<T>::value; \
865
4.99k
        if( inner_active_ >= N ) \
866
4.99k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
4.99k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
4.99k
        using H = decltype(handlers_); \
872
4.99k
        return mp11::mp_with_index<N>( \
873
4.99k
            inner_active_, \
874
4.99k
            tuple_handler_op_invoker<H, F>{ \
875
4.99k
                handlers_, \
876
4.99k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
4.99k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double<double&>(boost::system::error_code&, double&)
Line
Count
Source
858
314
    { \
859
314
        if( inner_active_ < 0 ) \
860
314
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
314
        constexpr int N = std::tuple_size<T>::value; \
865
313
        if( inner_active_ >= N ) \
866
313
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
313
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
312
        using H = decltype(handlers_); \
872
312
        return mp11::mp_with_index<N>( \
873
312
            inner_active_, \
874
312
            tuple_handler_op_invoker<H, F>{ \
875
312
                handlers_, \
876
312
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
313
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double<double&>(boost::system::error_code&, double&)
Line
Count
Source
858
296
    { \
859
296
        if( inner_active_ < 0 ) \
860
296
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
296
        constexpr int N = std::tuple_size<T>::value; \
865
295
        if( inner_active_ >= N ) \
866
295
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
295
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
294
        using H = decltype(handlers_); \
872
294
        return mp11::mp_with_index<N>( \
873
294
            inner_active_, \
874
294
            tuple_handler_op_invoker<H, F>{ \
875
294
                handlers_, \
876
294
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
295
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double<double&>(boost::system::error_code&, double&)
Line
Count
Source
858
4.58k
    { \
859
4.58k
        if( inner_active_ < 0 ) \
860
4.58k
        { \
861
4
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
4
            return false; \
863
4
        } \
864
4.58k
        constexpr int N = std::tuple_size<T>::value; \
865
4.58k
        if( inner_active_ >= N ) \
866
4.58k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
4.58k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
4.58k
        using H = decltype(handlers_); \
872
4.58k
        return mp11::mp_with_index<N>( \
873
4.58k
            inner_active_, \
874
4.58k
            tuple_handler_op_invoker<H, F>{ \
875
4.58k
                handlers_, \
876
4.58k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
4.58k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null<>(boost::system::error_code&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null<>(boost::system::error_code&)
Line
Count
Source
858
767
    { \
859
767
        if( inner_active_ < 0 ) \
860
767
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
767
        constexpr int N = std::tuple_size<T>::value; \
865
766
        if( inner_active_ >= N ) \
866
766
        { \
867
2
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
2
            return false; \
869
2
        } \
870
766
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
764
        using H = decltype(handlers_); \
872
764
        return mp11::mp_with_index<N>( \
873
764
            inner_active_, \
874
764
            tuple_handler_op_invoker<H, F>{ \
875
764
                handlers_, \
876
764
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
766
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null<>(boost::system::error_code&)
Line
Count
Source
858
6
    { \
859
6
        if( inner_active_ < 0 ) \
860
6
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
6
        constexpr int N = std::tuple_size<T>::value; \
865
5
        if( inner_active_ >= N ) \
866
5
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
5
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
4
        using H = decltype(handlers_); \
872
4
        return mp11::mp_with_index<N>( \
873
4
            inner_active_, \
874
4
            tuple_handler_op_invoker<H, F>{ \
875
4
                handlers_, \
876
4
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
5
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool<bool&>(boost::system::error_code&, bool&)
Line
Count
Source
858
1.88k
    { \
859
1.88k
        if( inner_active_ < 0 ) \
860
1.88k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
1.88k
        constexpr int N = std::tuple_size<T>::value; \
865
1.88k
        if( inner_active_ >= N ) \
866
1.88k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
1.88k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
1.88k
        using H = decltype(handlers_); \
872
1.88k
        return mp11::mp_with_index<N>( \
873
1.88k
            inner_active_, \
874
1.88k
            tuple_handler_op_invoker<H, F>{ \
875
1.88k
                handlers_, \
876
1.88k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
1.88k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool<bool&>(boost::system::error_code&, bool&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool<bool&>(boost::system::error_code&, bool&)
Line
Count
Source
858
8
    { \
859
8
        if( inner_active_ < 0 ) \
860
8
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
8
        constexpr int N = std::tuple_size<T>::value; \
865
7
        if( inner_active_ >= N ) \
866
7
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
7
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
6
        using H = decltype(handlers_); \
872
6
        return mp11::mp_with_index<N>( \
873
6
            inner_active_, \
874
6
            tuple_handler_op_invoker<H, F>{ \
875
6
                handlers_, \
876
6
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
7
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
693
    { \
859
693
        if( inner_active_ < 0 ) \
860
693
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
693
        constexpr int N = std::tuple_size<T>::value; \
865
692
        if( inner_active_ >= N ) \
866
692
        { \
867
2
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
2
            return false; \
869
2
        } \
870
692
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
690
        using H = decltype(handlers_); \
872
690
        return mp11::mp_with_index<N>( \
873
690
            inner_active_, \
874
690
            tuple_handler_op_invoker<H, F>{ \
875
690
                handlers_, \
876
690
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
692
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
1.14k
    { \
859
1.14k
        if( inner_active_ < 0 ) \
860
1.14k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
1.14k
        constexpr int N = std::tuple_size<T>::value; \
865
1.14k
        if( inner_active_ >= N ) \
866
1.14k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
1.14k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
1.14k
        using H = decltype(handlers_); \
872
1.14k
        return mp11::mp_with_index<N>( \
873
1.14k
            inner_active_, \
874
1.14k
            tuple_handler_op_invoker<H, F>{ \
875
1.14k
                handlers_, \
876
1.14k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
1.14k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
2.42k
    { \
859
2.42k
        if( inner_active_ < 0 ) \
860
2.42k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
2.42k
        constexpr int N = std::tuple_size<T>::value; \
865
2.42k
        if( inner_active_ >= N ) \
866
2.42k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
2.42k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
2.42k
        using H = decltype(handlers_); \
872
2.42k
        return mp11::mp_with_index<N>( \
873
2.42k
            inner_active_, \
874
2.42k
            tuple_handler_op_invoker<H, F>{ \
875
2.42k
                handlers_, \
876
2.42k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
2.42k
    }
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
1.64k
    { \
859
1.64k
        if( inner_active_ < 0 ) \
860
1.64k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
1.64k
        constexpr int N = std::tuple_size<T>::value; \
865
1.64k
        if( inner_active_ >= N ) \
866
1.64k
        { \
867
3
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
3
            return false; \
869
3
        } \
870
1.64k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
1.64k
        using H = decltype(handlers_); \
872
1.64k
        return mp11::mp_with_index<N>( \
873
1.64k
            inner_active_, \
874
1.64k
            tuple_handler_op_invoker<H, F>{ \
875
1.64k
                handlers_, \
876
1.64k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
1.64k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
2.57k
    { \
859
2.57k
        if( inner_active_ < 0 ) \
860
2.57k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
2.57k
        constexpr int N = std::tuple_size<T>::value; \
865
2.56k
        if( inner_active_ >= N ) \
866
2.56k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
2.56k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
2.56k
        using H = decltype(handlers_); \
872
2.56k
        return mp11::mp_with_index<N>( \
873
2.56k
            inner_active_, \
874
2.56k
            tuple_handler_op_invoker<H, F>{ \
875
2.56k
                handlers_, \
876
2.56k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
2.56k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Line
Count
Source
858
78.6k
    { \
859
78.6k
        if( inner_active_ < 0 ) \
860
78.6k
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
78.6k
        constexpr int N = std::tuple_size<T>::value; \
865
78.6k
        if( inner_active_ >= N ) \
866
78.6k
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
78.6k
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
78.6k
        using H = decltype(handlers_); \
872
78.6k
        return mp11::mp_with_index<N>( \
873
78.6k
            inner_active_, \
874
78.6k
            tuple_handler_op_invoker<H, F>{ \
875
78.6k
                handlers_, \
876
78.6k
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
78.6k
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin<>(boost::system::error_code&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin<>(boost::system::error_code&)
Line
Count
Source
858
7
    { \
859
7
        if( inner_active_ < 0 ) \
860
7
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
7
        constexpr int N = std::tuple_size<T>::value; \
865
6
        if( inner_active_ >= N ) \
866
6
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
6
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
5
        using H = decltype(handlers_); \
872
5
        return mp11::mp_with_index<N>( \
873
5
            inner_active_, \
874
5
            tuple_handler_op_invoker<H, F>{ \
875
5
                handlers_, \
876
5
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
6
    }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin<>(boost::system::error_code&)
Line
Count
Source
858
6
    { \
859
6
        if( inner_active_ < 0 ) \
860
6
        { \
861
1
            BOOST_JSON_FAIL( ec, error::not_array ); \
862
1
            return false; \
863
1
        } \
864
6
        constexpr int N = std::tuple_size<T>::value; \
865
5
        if( inner_active_ >= N ) \
866
5
        { \
867
1
            BOOST_JSON_FAIL( ec, error::size_mismatch ); \
868
1
            return false; \
869
1
        } \
870
5
        using F = handler_op_invoker< do_ ## fn, system::error_code, Args...>; \
871
4
        using H = decltype(handlers_); \
872
4
        return mp11::mp_with_index<N>( \
873
4
            inner_active_, \
874
4
            tuple_handler_op_invoker<H, F>{ \
875
4
                handlers_, \
876
4
                F{ std::forward_as_tuple(ec, args...) } } ); \
877
5
    }
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key<boost::core::basic_string_view<char>&>(boost::system::error_code&, boost::core::basic_string_view<char>&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end<>(boost::system::error_code&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end<>(boost::system::error_code&)
Unexecuted instantiation: bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end<>(boost::system::error_code&)
878
879
    BOOST_JSON_HANDLE_EVENT( on_object_begin )
880
    BOOST_JSON_HANDLE_EVENT( on_object_end )
881
882
    struct do_on_array_begin
883
    {
884
        HandlerTuple& handlers;
885
        system::error_code& ec;
886
887
        template< class I >
888
        bool operator()( I ) const
889
3.74k
        {
890
3.74k
            return get<I::value>(handlers).on_array_begin(ec);
891
3.74k
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
889
2
        {
890
2
            return get<I::value>(handlers).on_array_begin(ec);
891
2
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
889
1
        {
890
1
            return get<I::value>(handlers).on_array_begin(ec);
891
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
889
1
        {
890
1
            return get<I::value>(handlers).on_array_begin(ec);
891
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
889
1
        {
890
1
            return get<I::value>(handlers).on_array_begin(ec);
891
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
889
1
        {
890
1
            return get<I::value>(handlers).on_array_begin(ec);
891
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
889
905
        {
890
905
            return get<I::value>(handlers).on_array_begin(ec);
891
905
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
889
815
        {
890
815
            return get<I::value>(handlers).on_array_begin(ec);
891
815
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
889
1
        {
890
1
            return get<I::value>(handlers).on_array_begin(ec);
891
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
889
1.07k
        {
890
1.07k
            return get<I::value>(handlers).on_array_begin(ec);
891
1.07k
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_begin::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
889
934
        {
890
934
            return get<I::value>(handlers).on_array_begin(ec);
891
934
        }
892
    };
893
    bool on_array_begin( system::error_code& ec )
894
7.64k
    {
895
7.64k
        if( inner_active_ < 0 )
896
3.90k
        {
897
3.90k
            inner_active_ = 0;
898
3.90k
            return true;
899
3.90k
        }
900
901
3.74k
        constexpr int N = std::tuple_size<T>::value;
902
903
3.74k
        if( inner_active_ >= N )
904
3
        {
905
3
            BOOST_JSON_FAIL( ec, error::size_mismatch );
906
3
            return false;
907
3
        }
908
909
3.74k
        return mp11::mp_with_index<N>(
910
3.74k
            inner_active_, do_on_array_begin{handlers_, ec} );
911
3.74k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
894
1.90k
    {
895
1.90k
        if( inner_active_ < 0 )
896
1.89k
        {
897
1.89k
            inner_active_ = 0;
898
1.89k
            return true;
899
1.89k
        }
900
901
7
        constexpr int N = std::tuple_size<T>::value;
902
903
7
        if( inner_active_ >= N )
904
1
        {
905
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
906
1
            return false;
907
1
        }
908
909
6
        return mp11::mp_with_index<N>(
910
6
            inner_active_, do_on_array_begin{handlers_, ec} );
911
7
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
894
2.64k
    {
895
2.64k
        if( inner_active_ < 0 )
896
921
        {
897
921
            inner_active_ = 0;
898
921
            return true;
899
921
        }
900
901
1.72k
        constexpr int N = std::tuple_size<T>::value;
902
903
1.72k
        if( inner_active_ >= N )
904
1
        {
905
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
906
1
            return false;
907
1
        }
908
909
1.72k
        return mp11::mp_with_index<N>(
910
1.72k
            inner_active_, do_on_array_begin{handlers_, ec} );
911
1.72k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
894
3.10k
    {
895
3.10k
        if( inner_active_ < 0 )
896
1.08k
        {
897
1.08k
            inner_active_ = 0;
898
1.08k
            return true;
899
1.08k
        }
900
901
2.01k
        constexpr int N = std::tuple_size<T>::value;
902
903
2.01k
        if( inner_active_ >= N )
904
1
        {
905
1
            BOOST_JSON_FAIL( ec, error::size_mismatch );
906
1
            return false;
907
1
        }
908
909
2.01k
        return mp11::mp_with_index<N>(
910
2.01k
            inner_active_, do_on_array_begin{handlers_, ec} );
911
2.01k
    }
912
913
    struct do_on_array_end
914
    {
915
        HandlerTuple& handlers;
916
        system::error_code& ec;
917
918
        template< class I >
919
        bool operator()( I ) const
920
3.41k
        {
921
3.41k
            return get<I::value>(handlers).on_array_end(ec);
922
3.41k
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
920
839
        {
921
839
            return get<I::value>(handlers).on_array_end(ec);
922
839
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
920
778
        {
921
778
            return get<I::value>(handlers).on_array_end(ec);
922
778
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
920
1
        {
921
1
            return get<I::value>(handlers).on_array_end(ec);
922
1
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
920
952
        {
921
952
            return get<I::value>(handlers).on_array_end(ec);
922
952
        }
bool boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::do_on_array_end::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
920
839
        {
921
839
            return get<I::value>(handlers).on_array_end(ec);
922
839
        }
923
    };
924
    bool on_array_end( system::error_code& ec )
925
6.57k
    {
926
6.57k
        if( inner_active_ < 0 )
927
0
            return parent_->signal_end(ec);
928
929
6.57k
        constexpr int N = std::tuple_size<T>::value;
930
931
6.57k
        if( inner_active_ >= N )
932
3.16k
            return signal_end(ec);
933
934
3.41k
        return mp11::mp_with_index<N>(
935
3.41k
            inner_active_, do_on_array_end{handlers_, ec} );
936
6.57k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
925
1.60k
    {
926
1.60k
        if( inner_active_ < 0 )
927
0
            return parent_->signal_end(ec);
928
929
1.60k
        constexpr int N = std::tuple_size<T>::value;
930
931
1.60k
        if( inner_active_ >= N )
932
1.60k
            return signal_end(ec);
933
934
5
        return mp11::mp_with_index<N>(
935
5
            inner_active_, do_on_array_end{handlers_, ec} );
936
1.60k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::array<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, 3ul>, std::__1::array<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
925
2.36k
    {
926
2.36k
        if( inner_active_ < 0 )
927
0
            return parent_->signal_end(ec);
928
929
2.36k
        constexpr int N = std::tuple_size<T>::value;
930
931
2.36k
        if( inner_active_ >= N )
932
743
            return signal_end(ec);
933
934
1.61k
        return mp11::mp_with_index<N>(
935
1.61k
            inner_active_, do_on_array_end{handlers_, ec} );
936
2.36k
    }
boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, std::__1::vector<double, std::__1::allocator<double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Line
Count
Source
925
2.60k
    {
926
2.60k
        if( inner_active_ < 0 )
927
0
            return parent_->signal_end(ec);
928
929
2.60k
        constexpr int N = std::tuple_size<T>::value;
930
931
2.60k
        if( inner_active_ >= N )
932
818
            return signal_end(ec);
933
934
1.79k
        return mp11::mp_with_index<N>(
935
1.79k
            inner_active_, do_on_array_end{handlers_, ec} );
936
2.60k
    }
937
938
    BOOST_JSON_HANDLE_EVENT( on_key_part )
939
    BOOST_JSON_HANDLE_EVENT( on_key )
940
    BOOST_JSON_HANDLE_EVENT( on_string_part )
941
    BOOST_JSON_HANDLE_EVENT( on_string )
942
    BOOST_JSON_HANDLE_EVENT( on_number_part )
943
    BOOST_JSON_HANDLE_EVENT( on_int64 )
944
    BOOST_JSON_HANDLE_EVENT( on_uint64 )
945
    BOOST_JSON_HANDLE_EVENT( on_double )
946
    BOOST_JSON_HANDLE_EVENT( on_bool )
947
    BOOST_JSON_HANDLE_EVENT( on_null )
948
949
#undef BOOST_JSON_HANDLE_EVENT
950
};
951
952
// described struct handler
953
#if defined(BOOST_MSVC) && BOOST_MSVC < 1910
954
955
template< class T >
956
struct struct_element_list_impl
957
{
958
    template< class D >
959
    using helper = described_member_t<T, D>;
960
961
    using type = mp11::mp_transform< helper, described_members<T> >;
962
};
963
template< class T >
964
using struct_element_list = typename struct_element_list_impl<T>::type;
965
966
#else
967
968
template< class T >
969
using struct_element_list = mp11::mp_transform_q<
970
    mp11::mp_bind_front< described_member_t, T >, described_members<T> >;
971
972
#endif
973
974
struct struct_accessor
975
{
976
    template< class T >
977
    auto operator()( T*, mp11::mp_size< described_members<T> > ) const
978
        -> void*
979
8.84k
    {
980
8.84k
        return nullptr;
981
8.84k
    }
982
983
    template< class T, class I >
984
    auto operator()( T* t, I ) const
985
        -> described_member_t<T, mp11::mp_at< described_members<T>, I> >*
986
212k
    {
987
212k
        using Ds = described_members<T>;
988
212k
        using D = mp11::mp_at<Ds, I>;
989
212k
        return &(t->*D::pointer);
990
212k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm0EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm1EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm2EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm3EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm4EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm5EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm6EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm7EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm8EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm9EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm10EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm11EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm12EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm13EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm14EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm15EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm16EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm17EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm18EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm19EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm20EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm21EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm22EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
_ZNK5boost4json6detail15struct_accessorclI6ObjectNSt3__117integral_constantImLm23EEEEEPNS5_9remove_cvINS5_16remove_referenceIDTdsclsr3stdE7declvalIRT_EEsrNS_4mp116detail12mp_if_c_implIXlttlmsrT0_5valueEsr7mp_sizeINSD_15mp_copy_if_implINSD_17mp_eval_if_c_implILb0ENSE_IXaagtsZT_Li0EeqsZT_sr11mp_count_ifINSC_7mp_listIJDTcl33boost_public_member_descriptor_fnscPPSA_Li0EEEDTcl36boost_protected_member_descriptor_fnscSK_Li0EEEDTcl34boost_private_member_descriptor_fnscSK_Li0EEEEEENSC_16mp_is_value_listEEE5valueENSD_18append_value_listsEJNSD_17append_type_listsEEE4type2fnISL_SM_SN_EENS_8describe6detail26describe_inherited_membersEJSA_NSI_IJEEEEE4typeENSX_13member_filterILj135EE2fnEE4typeEEE5valueENSD_12mp_at_c_implIS16_XtlmsrSF_5valueEEEEJvEE4type4typeE7pointerEE4typeEE4typeESJ_SF_
Line
Count
Source
986
8.84k
    {
987
8.84k
        using Ds = described_members<T>;
988
8.84k
        using D = mp11::mp_at<Ds, I>;
989
8.84k
        return &(t->*D::pointer);
990
8.84k
    }
991
};
992
993
struct struct_key_searcher
994
{
995
    string_view key;
996
    int& found;
997
    int index = 0;
998
999
    struct_key_searcher(string_view key, int& found) noexcept
1000
241k
        : key(key), found(found)
1001
241k
    {}
1002
1003
    template< class D >
1004
    void
1005
    operator()( D )
1006
5.79M
    {
1007
5.79M
        if( key == D::name )
1008
39.3k
            found = index;
1009
5.79M
        ++index;
1010
5.79M
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#1}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#1}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
111
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#2}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#2}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
317
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#3}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#3}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
722
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#4}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#4}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
9.39k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#5}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#5}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
3.01k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#6}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#6}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
872
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#7}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#7}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
314
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#8}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#8}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
742
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#9}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#9}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
655
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#10}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#10}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
353
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#11}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#11}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
539
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#12}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#12}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
656
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#13}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#13}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
922
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#14}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#14}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
801
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#15}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#15}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
1.56k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#16}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#16}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
1.91k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#17}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#17}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
934
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#18}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#18}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
1.10k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#19}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#19}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
9.65k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#20}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#20}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
891
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#21}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#21}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
380
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#22}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#22}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
1.25k
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#23}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#23}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
549
            found = index;
1009
241k
        ++index;
1010
241k
    }
void boost::json::detail::struct_key_searcher::operator()<boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#24}::operator()() const::_boost_desc, 1u> >(boost::describe::detail::member_descriptor<boost_public_member_descriptor_fn(Object**)::{lambda()#24}::operator()() const::_boost_desc, 1u>)
Line
Count
Source
1006
241k
    {
1007
241k
        if( key == D::name )
1008
1.69k
            found = index;
1009
241k
        ++index;
1010
241k
    }
1011
};
1012
1013
template<class P>
1014
struct ignoring_handler
1015
{
1016
    P* parent_;
1017
    std::size_t array_depth_ = 0;
1018
    std::size_t object_depth_ = 0;
1019
1020
    ignoring_handler(ignoring_handler const&) = delete;
1021
    ignoring_handler& operator=(ignoring_handler const&) = delete;
1022
1023
    ignoring_handler(void*, P* p) noexcept
1024
8.84k
        : parent_(p)
1025
8.84k
    {}
1026
1027
    bool on_object_begin(system::error_code&)
1028
1.71k
    {
1029
1.71k
        ++object_depth_;
1030
1.71k
        return true;
1031
1.71k
    }
1032
1033
    bool on_object_end(system::error_code& ec)
1034
1.14k
    {
1035
1.14k
        BOOST_ASSERT( object_depth_ > 0 );
1036
1.14k
        --object_depth_;
1037
1038
1.14k
        if( (array_depth_ + object_depth_) == 0 )
1039
349
            return parent_->signal_value(ec);
1040
795
        return true;
1041
1.14k
    }
1042
1043
    bool on_array_begin(system::error_code&)
1044
3.69k
    {
1045
3.69k
        ++array_depth_;
1046
3.69k
        return true;
1047
3.69k
    }
1048
1049
    bool on_array_end(system::error_code& ec)
1050
1.44k
    {
1051
1.44k
        BOOST_ASSERT( array_depth_ > 0 );
1052
1.44k
        --array_depth_;
1053
1054
1.44k
        if( (array_depth_ + object_depth_) == 0 )
1055
493
            return parent_->signal_end(ec);
1056
956
        return true;
1057
1.44k
    }
1058
1059
    bool on_key_part(system::error_code&, string_view)
1060
2.46k
    {
1061
2.46k
        return true;
1062
2.46k
    }
1063
1064
    bool on_key(system::error_code&, string_view)
1065
1.02k
    {
1066
1.02k
        return true;
1067
1.02k
    }
1068
1069
    bool on_string_part(system::error_code&, string_view)
1070
8.39k
    {
1071
8.39k
        return true;
1072
8.39k
    }
1073
1074
    bool on_string(system::error_code& ec, string_view)
1075
2.05k
    {
1076
2.05k
        if( (array_depth_ + object_depth_) == 0 )
1077
605
            return parent_->signal_value(ec);
1078
1.44k
        return true;
1079
2.05k
    }
1080
1081
    bool on_number_part(system::error_code&)
1082
69
    {
1083
69
        return true;
1084
69
    }
1085
1086
    bool on_int64(system::error_code& ec, std::int64_t)
1087
205k
    {
1088
205k
        if( (array_depth_ + object_depth_) == 0 )
1089
197k
            return parent_->signal_value(ec);
1090
7.45k
        return true;
1091
205k
    }
1092
1093
    bool on_uint64(system::error_code& ec, std::uint64_t)
1094
546
    {
1095
546
        if( (array_depth_ + object_depth_) == 0 )
1096
191
            return parent_->signal_value(ec);
1097
355
        return true;
1098
546
    }
1099
1100
    bool on_double(system::error_code& ec, double)
1101
19.4k
    {
1102
19.4k
        if( (array_depth_ + object_depth_) == 0 )
1103
106
            return parent_->signal_value(ec);
1104
19.3k
        return true;
1105
19.4k
    }
1106
1107
    bool on_bool(system::error_code& ec, bool)
1108
709
    {
1109
709
        if( (array_depth_ + object_depth_) == 0 )
1110
278
            return parent_->signal_value(ec);
1111
431
        return true;
1112
709
    }
1113
1114
    bool on_null(system::error_code& ec)
1115
338
    {
1116
338
        if( (array_depth_ + object_depth_) == 0 )
1117
222
            return parent_->signal_value(ec);
1118
116
        return true;
1119
338
    }
1120
};
1121
1122
template<class V, class P>
1123
class converting_handler<described_class_conversion_tag, V, P>
1124
{
1125
#if !defined(BOOST_DESCRIBE_CXX14)
1126
1127
    static_assert(
1128
        sizeof(V) == 0, "Struct support for parse_into requires C++14" );
1129
1130
#else
1131
1132
private:
1133
    using Dm = described_members<V>;
1134
    using Dt = struct_element_list<V>;
1135
1136
    template<class T>
1137
    using MemberHandler = get_handler<T, converting_handler>;
1138
    using InnerHandlers = mp11::mp_push_back<
1139
        mp11::mp_transform<MemberHandler, Dt>,
1140
        ignoring_handler<converting_handler> >;
1141
    using InnerCount = mp11::mp_size<InnerHandlers>;
1142
1143
    V* value_;
1144
    P* parent_;
1145
1146
    std::string key_;
1147
1148
    handler_tuple<converting_handler, InnerHandlers> handlers_;
1149
    int inner_active_ = -1;
1150
    std::size_t activated_ = 0;
1151
1152
public:
1153
    converting_handler( converting_handler const& ) = delete;
1154
    converting_handler& operator=( converting_handler const& ) = delete;
1155
1156
    converting_handler( V* v, P* p )
1157
8.84k
        : value_(v), parent_(p), handlers_(struct_accessor(), v, this)
1158
8.84k
    {}
1159
1160
    struct is_required_checker
1161
    {
1162
        bool operator()( mp11::mp_size<Dt> ) const noexcept
1163
199k
        {
1164
199k
            return false;
1165
199k
        }
1166
1167
        template< class I >
1168
        auto operator()( I ) const noexcept
1169
36.3k
        {
1170
36.3k
            using T = mp11::mp_at<Dt, I>;
1171
36.3k
            return !is_optional_like<T>::value;
1172
36.3k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
1169
96
        {
1170
96
            using T = mp11::mp_at<Dt, I>;
1171
96
            return !is_optional_like<T>::value;
1172
96
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
1169
223
        {
1170
223
            using T = mp11::mp_at<Dt, I>;
1171
223
            return !is_optional_like<T>::value;
1172
223
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
1169
636
        {
1170
636
            using T = mp11::mp_at<Dt, I>;
1171
636
            return !is_optional_like<T>::value;
1172
636
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
1169
9.38k
        {
1170
9.38k
            using T = mp11::mp_at<Dt, I>;
1171
9.38k
            return !is_optional_like<T>::value;
1172
9.38k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
1169
3.00k
        {
1170
3.00k
            using T = mp11::mp_at<Dt, I>;
1171
3.00k
            return !is_optional_like<T>::value;
1172
3.00k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 5ul> >(std::__1::integral_constant<unsigned long, 5ul>) const
Line
Count
Source
1169
787
        {
1170
787
            using T = mp11::mp_at<Dt, I>;
1171
787
            return !is_optional_like<T>::value;
1172
787
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 6ul> >(std::__1::integral_constant<unsigned long, 6ul>) const
Line
Count
Source
1169
241
        {
1170
241
            using T = mp11::mp_at<Dt, I>;
1171
241
            return !is_optional_like<T>::value;
1172
241
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 7ul> >(std::__1::integral_constant<unsigned long, 7ul>) const
Line
Count
Source
1169
616
        {
1170
616
            using T = mp11::mp_at<Dt, I>;
1171
616
            return !is_optional_like<T>::value;
1172
616
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 8ul> >(std::__1::integral_constant<unsigned long, 8ul>) const
Line
Count
Source
1169
478
        {
1170
478
            using T = mp11::mp_at<Dt, I>;
1171
478
            return !is_optional_like<T>::value;
1172
478
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 9ul> >(std::__1::integral_constant<unsigned long, 9ul>) const
Line
Count
Source
1169
312
        {
1170
312
            using T = mp11::mp_at<Dt, I>;
1171
312
            return !is_optional_like<T>::value;
1172
312
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 10ul> >(std::__1::integral_constant<unsigned long, 10ul>) const
Line
Count
Source
1169
409
        {
1170
409
            using T = mp11::mp_at<Dt, I>;
1171
409
            return !is_optional_like<T>::value;
1172
409
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 11ul> >(std::__1::integral_constant<unsigned long, 11ul>) const
Line
Count
Source
1169
505
        {
1170
505
            using T = mp11::mp_at<Dt, I>;
1171
505
            return !is_optional_like<T>::value;
1172
505
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 12ul> >(std::__1::integral_constant<unsigned long, 12ul>) const
Line
Count
Source
1169
555
        {
1170
555
            using T = mp11::mp_at<Dt, I>;
1171
555
            return !is_optional_like<T>::value;
1172
555
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 13ul> >(std::__1::integral_constant<unsigned long, 13ul>) const
Line
Count
Source
1169
487
        {
1170
487
            using T = mp11::mp_at<Dt, I>;
1171
487
            return !is_optional_like<T>::value;
1172
487
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 14ul> >(std::__1::integral_constant<unsigned long, 14ul>) const
Line
Count
Source
1169
1.24k
        {
1170
1.24k
            using T = mp11::mp_at<Dt, I>;
1171
1.24k
            return !is_optional_like<T>::value;
1172
1.24k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 15ul> >(std::__1::integral_constant<unsigned long, 15ul>) const
Line
Count
Source
1169
1.60k
        {
1170
1.60k
            using T = mp11::mp_at<Dt, I>;
1171
1.60k
            return !is_optional_like<T>::value;
1172
1.60k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 16ul> >(std::__1::integral_constant<unsigned long, 16ul>) const
Line
Count
Source
1169
743
        {
1170
743
            using T = mp11::mp_at<Dt, I>;
1171
743
            return !is_optional_like<T>::value;
1172
743
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 17ul> >(std::__1::integral_constant<unsigned long, 17ul>) const
Line
Count
Source
1169
818
        {
1170
818
            using T = mp11::mp_at<Dt, I>;
1171
818
            return !is_optional_like<T>::value;
1172
818
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 18ul> >(std::__1::integral_constant<unsigned long, 18ul>) const
Line
Count
Source
1169
9.62k
        {
1170
9.62k
            using T = mp11::mp_at<Dt, I>;
1171
9.62k
            return !is_optional_like<T>::value;
1172
9.62k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 19ul> >(std::__1::integral_constant<unsigned long, 19ul>) const
Line
Count
Source
1169
878
        {
1170
878
            using T = mp11::mp_at<Dt, I>;
1171
878
            return !is_optional_like<T>::value;
1172
878
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 20ul> >(std::__1::integral_constant<unsigned long, 20ul>) const
Line
Count
Source
1169
276
        {
1170
276
            using T = mp11::mp_at<Dt, I>;
1171
276
            return !is_optional_like<T>::value;
1172
276
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 21ul> >(std::__1::integral_constant<unsigned long, 21ul>) const
Line
Count
Source
1169
1.21k
        {
1170
1.21k
            using T = mp11::mp_at<Dt, I>;
1171
1.21k
            return !is_optional_like<T>::value;
1172
1.21k
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 22ul> >(std::__1::integral_constant<unsigned long, 22ul>) const
Line
Count
Source
1169
540
        {
1170
540
            using T = mp11::mp_at<Dt, I>;
1171
540
            return !is_optional_like<T>::value;
1172
540
        }
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::is_required_checker::operator()<std::__1::integral_constant<unsigned long, 23ul> >(std::__1::integral_constant<unsigned long, 23ul>) const
Line
Count
Source
1169
1.66k
        {
1170
1.66k
            using T = mp11::mp_at<Dt, I>;
1171
1.66k
            return !is_optional_like<T>::value;
1172
1.66k
        }
1173
    };
1174
1175
    bool signal_value(system::error_code&)
1176
236k
    {
1177
236k
        BOOST_ASSERT( inner_active_ >= 0 );
1178
236k
        bool required_member = mp11::mp_with_index<InnerCount>(
1179
236k
            inner_active_,
1180
236k
            is_required_checker{});
1181
236k
        if( required_member )
1182
31.7k
            ++activated_;
1183
1184
236k
        key_ = {};
1185
236k
        inner_active_ = -1;
1186
236k
        return true;
1187
236k
    }
1188
1189
    bool signal_end(system::error_code& ec)
1190
493
    {
1191
493
        key_ = {};
1192
493
        inner_active_ = -1;
1193
493
        return parent_->signal_value(ec);
1194
493
    }
1195
1196
#define BOOST_JSON_INVOKE_INNER(fn) \
1197
1.46M
    if( inner_active_ < 0 ) \
1198
1.46M
    { \
1199
1.90k
        BOOST_JSON_FAIL( ec, error::not_object ); \
1200
1.90k
        return false; \
1201
1.90k
    } \
1202
1.46M
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
8
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_number_part(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
69
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
223
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
501
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
9.12k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.48k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
385k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
66.9k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.24k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.46k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7.92k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
12.0k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4.30k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.80k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
434k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
8.15k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
82
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
874
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
73
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_int64(boost::system::error_code&, long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
205k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
82
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
206
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
64
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
230
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
55
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
493
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
94
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
202
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
74
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
43
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
752
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
303
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4.99k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
255
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
94
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
289
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
189
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_uint64(boost::system::error_code&, unsigned long)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
546
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
198
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
290
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
200
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
314
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
296
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4.58k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
360
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
212
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_double(boost::system::error_code&, double)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
19.4k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
767
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
6
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
812
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
194
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
83
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
66
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
616
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_null(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
338
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
96
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
112k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
955
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.88k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
8
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
268
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
66
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_bool(boost::system::error_code&, bool)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
709
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.67k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.25k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
693
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.14k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.42k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
983
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
751
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
8.39k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
218
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
327
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
509
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.46k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
787
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3.40k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.64k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.57k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
78.6k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
589
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.04k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.05k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
301
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
730
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
642
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
338
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
528
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
644
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.90k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.64k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3.10k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
5
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3.69k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
241
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
616
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
478
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
313
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
410
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
506
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.60k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.36k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2.60k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_array_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.44k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
2
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
908
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
787
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.55k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
7
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
6
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
4
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_begin(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.71k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
8.01k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
3.44k
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
12.2k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.02k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, float, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, boost::json::detail::string_like_conversion_tag::char_traits<char>, boost::json::detail::string_like_conversion_tag::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<bool, boost::json::detail::sequence_conversion_tag::allocator<bool> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<long, boost::json::detail::sequence_conversion_tag::allocator<long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::vector<unsigned long, boost::json::detail::sequence_conversion_tag::allocator<unsigned long> >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<bool, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::sequence_conversion_tag, std::__1::array<unsigned long, 3ul>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, long, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, long> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
555
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::allocator<char>, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, boost::json::detail::map_like_conversion_tag::allocator<char> > > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
487
    auto f = [&](auto& handler) { return handler.fn ; }; \
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::map_like_conversion_tag, std::__1::map<boost::json::detail::map_like_conversion_tag::basic_string<char, boost::json::detail::map_like_conversion_tag::char_traits<char>, boost::json::detail::map_like_conversion_tag::allocator<char> >, double, boost::json::detail::map_like_conversion_tag::less<boost::json::detail::map_like_conversion_tag::allocator<char> >, boost::json::detail::map_like_conversion_tag::char_traits<char><boost::json::detail::map_like_conversion_tag::pair<boost::json::detail::map_like_conversion_tag::allocator<char> const, double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.24k
    auto f = [&](auto& handler) { return handler.fn ; }; \
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<bool, unsigned long, long, double, boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::array<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, 3ul>, std::__1::tuple<double, 3ul>, decltype(nullptr)>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::tuple_conversion_tag, std::__1::tuple<boost::json::detail::tuple_conversion_tag::vector<boost::json::detail::tuple_conversion_tag::basic_string<char, boost::json::detail::tuple_conversion_tag::char_traits<char>, boost::json::detail::tuple_conversion_tag::allocator<char> >, boost::json::detail::tuple_conversion_tag::char_traits<char><boost::json::detail::tuple_conversion_tag::allocator<char> > >, std::__1::tuple<double, boost::json::detail::tuple_conversion_tag::char_traits<char><double> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, boost::variant2::variant::char_traits<char>, boost::variant2::variant::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Unexecuted instantiation: auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<boost::json::detail::optional_conversion_tag::basic_string<char, boost::json::detail::optional_conversion_tag::char_traits<char>, boost::json::detail::optional_conversion_tag::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
auto boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >::on_object_end(boost::system::error_code&)::{lambda(auto:1&)#1}::operator()<boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > >(boost::json::detail::ignoring_handler<boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >&) const
Line
Count
Source
1202
1.14k
    auto f = [&](auto& handler) { return handler.fn ; }; \
1203
1.46M
    using F = decltype(f); \
1204
1.46M
    using H = decltype(handlers_); \
1205
1.46M
    return mp11::mp_with_index<InnerCount>( \
1206
1.46M
            inner_active_, \
1207
1.46M
            tuple_handler_op_invoker<H, F>{handlers_, f} );
1208
1209
    bool on_object_begin( system::error_code& ec )
1210
11.1k
    {
1211
11.1k
        if( inner_active_ < 0 )
1212
6.16k
            return true;
1213
1214
5.01k
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1215
0
    }
1216
1217
    bool on_object_end( system::error_code& ec )
1218
3.51k
    {
1219
3.51k
        if( inner_active_ < 0 )
1220
83
        {
1221
83
            using C = mp11::mp_count_if<Dt, is_optional_like>;
1222
83
            constexpr int N = mp11::mp_size<Dt>::value - C::value;
1223
83
            if( activated_ < N )
1224
10
            {
1225
10
                BOOST_JSON_FAIL( ec, error::size_mismatch );
1226
10
                return false;
1227
10
            }
1228
1229
73
            return parent_->signal_value(ec);
1230
83
        }
1231
1232
3.42k
        BOOST_JSON_INVOKE_INNER( on_object_end(ec) );
1233
0
    }
1234
1235
    bool on_array_begin( system::error_code& ec )
1236
14.5k
    {
1237
14.5k
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1238
0
    }
1239
1240
    bool on_array_end( system::error_code& ec )
1241
10.5k
    {
1242
10.5k
        if( inner_active_ < 0 )
1243
0
            return parent_->signal_end(ec);
1244
1245
10.5k
        BOOST_JSON_INVOKE_INNER( on_array_end(ec) );
1246
0
    }
1247
1248
    bool on_key_part( system::error_code& ec, string_view sv )
1249
9.28k
    {
1250
9.28k
        if( inner_active_ < 0 )
1251
5.76k
        {
1252
5.76k
            key_.append( sv.data(), sv.size() );
1253
5.76k
            return true;
1254
5.76k
        }
1255
1256
3.51k
        BOOST_JSON_INVOKE_INNER( on_key_part(ec, sv) );
1257
0
    }
1258
1259
    bool on_key( system::error_code& ec, string_view sv )
1260
266k
    {
1261
266k
        if( inner_active_ >= 0 )
1262
24.7k
        {
1263
24.7k
            BOOST_JSON_INVOKE_INNER( on_key(ec, sv) );
1264
0
        }
1265
1266
241k
        string_view key = sv;
1267
241k
        if( !key_.empty() )
1268
599
        {
1269
599
            key_.append( sv.data(), sv.size() );
1270
599
            key = key_;
1271
599
        }
1272
1273
241k
        inner_active_ = InnerCount::value - 1;
1274
241k
        mp11::mp_for_each<Dm>( struct_key_searcher(key, inner_active_) );
1275
241k
        return true;
1276
266k
    }
1277
1278
    bool on_string_part( system::error_code& ec, string_view sv )
1279
17.6k
    {
1280
17.6k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1281
0
    }
1282
1283
    bool on_string( system::error_code& ec, string_view sv )
1284
90.7k
    {
1285
90.7k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1286
0
    }
1287
1288
    bool on_number_part( system::error_code& ec )
1289
138
    {
1290
138
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1291
0
    }
1292
1293
    bool on_int64( system::error_code& ec, std::int64_t v )
1294
1.14M
    {
1295
1.14M
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1296
0
    }
1297
1298
    bool on_uint64( system::error_code& ec, std::uint64_t v )
1299
9.04k
    {
1300
9.04k
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1301
0
    }
1302
1303
    bool on_double( system::error_code& ec, double v )
1304
27.2k
    {
1305
27.2k
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1306
0
    }
1307
1308
    bool on_bool( system::error_code& ec, bool v )
1309
116k
    {
1310
116k
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1311
0
    }
1312
1313
    bool on_null( system::error_code& ec )
1314
2.91k
    {
1315
2.91k
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
1316
0
    }
1317
1318
#undef BOOST_JSON_INVOKE_INNER
1319
1320
#endif
1321
};
1322
1323
// variant handler
1324
struct object_begin_handler_event
1325
{ };
1326
1327
struct object_end_handler_event
1328
{ };
1329
1330
struct array_begin_handler_event
1331
{ };
1332
1333
struct array_end_handler_event
1334
{ };
1335
1336
struct key_handler_event
1337
{
1338
    std::string value;
1339
};
1340
1341
struct string_handler_event
1342
{
1343
    std::string value;
1344
};
1345
1346
struct int64_handler_event
1347
{
1348
    std::int64_t value;
1349
};
1350
1351
struct uint64_handler_event
1352
{
1353
    std::uint64_t value;
1354
};
1355
1356
struct double_handler_event
1357
{
1358
    double value;
1359
};
1360
1361
struct bool_handler_event
1362
{
1363
    bool value;
1364
};
1365
1366
struct null_handler_event
1367
{ };
1368
1369
using parse_event = variant2::variant<
1370
    object_begin_handler_event,
1371
    object_end_handler_event,
1372
    array_begin_handler_event,
1373
    array_end_handler_event,
1374
    key_handler_event,
1375
    string_handler_event,
1376
    int64_handler_event,
1377
    uint64_handler_event,
1378
    double_handler_event,
1379
    bool_handler_event,
1380
    null_handler_event>;
1381
1382
template< class H >
1383
struct event_visitor
1384
{
1385
    H& handler;
1386
    system::error_code& ec;
1387
1388
    bool
1389
    operator()(object_begin_handler_event&) const
1390
20
    {
1391
20
        return handler.on_object_begin(ec);
1392
20
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_begin_handler_event&) const
Line
Count
Source
1390
4
    {
1391
4
        return handler.on_object_begin(ec);
1392
4
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_begin_handler_event&) const
Line
Count
Source
1390
4
    {
1391
4
        return handler.on_object_begin(ec);
1392
4
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_begin_handler_event&) const
Line
Count
Source
1390
4
    {
1391
4
        return handler.on_object_begin(ec);
1392
4
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_begin_handler_event&) const
Line
Count
Source
1390
4
    {
1391
4
        return handler.on_object_begin(ec);
1392
4
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_begin_handler_event&) const
Line
Count
Source
1390
4
    {
1391
4
        return handler.on_object_begin(ec);
1392
4
    }
1393
1394
    bool
1395
    operator()(object_end_handler_event&) const
1396
0
    {
1397
0
        return handler.on_object_end(ec);
1398
0
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::object_end_handler_event&) const
1399
1400
    bool
1401
    operator()(array_begin_handler_event&) const
1402
25
    {
1403
25
        return handler.on_array_begin(ec);
1404
25
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_begin_handler_event&) const
Line
Count
Source
1402
5
    {
1403
5
        return handler.on_array_begin(ec);
1404
5
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_begin_handler_event&) const
Line
Count
Source
1402
5
    {
1403
5
        return handler.on_array_begin(ec);
1404
5
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_begin_handler_event&) const
Line
Count
Source
1402
5
    {
1403
5
        return handler.on_array_begin(ec);
1404
5
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_begin_handler_event&) const
Line
Count
Source
1402
5
    {
1403
5
        return handler.on_array_begin(ec);
1404
5
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_begin_handler_event&) const
Line
Count
Source
1402
5
    {
1403
5
        return handler.on_array_begin(ec);
1404
5
    }
1405
1406
    bool
1407
    operator()(array_end_handler_event&) const
1408
0
    {
1409
0
        return handler.on_array_end(ec);
1410
0
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_end_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::array_end_handler_event&) const
1411
1412
    bool
1413
    operator()(key_handler_event& ev) const
1414
0
    {
1415
0
        return handler.on_key(ec, ev.value);
1416
0
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::key_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::key_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::key_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::key_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::key_handler_event&) const
1417
1418
    bool
1419
    operator()(string_handler_event& ev) const
1420
2.94k
    {
1421
2.94k
        return handler.on_string(ec, ev.value);
1422
2.94k
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::string_handler_event&) const
Line
Count
Source
1420
589
    {
1421
589
        return handler.on_string(ec, ev.value);
1422
589
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::string_handler_event&) const
Line
Count
Source
1420
589
    {
1421
589
        return handler.on_string(ec, ev.value);
1422
589
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::string_handler_event&) const
Line
Count
Source
1420
589
    {
1421
589
        return handler.on_string(ec, ev.value);
1422
589
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::string_handler_event&) const
Line
Count
Source
1420
589
    {
1421
589
        return handler.on_string(ec, ev.value);
1422
589
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::string_handler_event&) const
Line
Count
Source
1420
589
    {
1421
589
        return handler.on_string(ec, ev.value);
1422
589
    }
1423
1424
    bool
1425
    operator()(int64_handler_event& ev) const
1426
16.4k
    {
1427
16.4k
        return handler.on_int64(ec, ev.value);
1428
16.4k
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::int64_handler_event&) const
Line
Count
Source
1426
8.15k
    {
1427
8.15k
        return handler.on_int64(ec, ev.value);
1428
8.15k
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::int64_handler_event&) const
Line
Count
Source
1426
8.15k
    {
1427
8.15k
        return handler.on_int64(ec, ev.value);
1428
8.15k
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::int64_handler_event&) const
Line
Count
Source
1426
165
    {
1427
165
        return handler.on_int64(ec, ev.value);
1428
165
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::int64_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::int64_handler_event&) const
1429
1430
    bool
1431
    operator()(uint64_handler_event& ev) const
1432
510
    {
1433
510
        return handler.on_uint64(ec, ev.value);
1434
510
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::uint64_handler_event&) const
Line
Count
Source
1432
255
    {
1433
255
        return handler.on_uint64(ec, ev.value);
1434
255
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::uint64_handler_event&) const
Line
Count
Source
1432
255
    {
1433
255
        return handler.on_uint64(ec, ev.value);
1434
255
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::uint64_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::uint64_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::uint64_handler_event&) const
1435
1436
    bool
1437
    operator()(double_handler_event& ev) const
1438
1.44k
    {
1439
1.44k
        return handler.on_double(ec, ev.value);
1440
1.44k
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::double_handler_event&) const
Line
Count
Source
1438
360
    {
1439
360
        return handler.on_double(ec, ev.value);
1440
360
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::double_handler_event&) const
Line
Count
Source
1438
360
    {
1439
360
        return handler.on_double(ec, ev.value);
1440
360
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::double_handler_event&) const
Line
Count
Source
1438
360
    {
1439
360
        return handler.on_double(ec, ev.value);
1440
360
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::double_handler_event&) const
Line
Count
Source
1438
360
    {
1439
360
        return handler.on_double(ec, ev.value);
1440
360
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::double_handler_event&) const
1441
1442
    bool
1443
    operator()(bool_handler_event& ev) const
1444
268
    {
1445
268
        return handler.on_bool(ec, ev.value);
1446
268
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::bool_handler_event&) const
Line
Count
Source
1444
268
    {
1445
268
        return handler.on_bool(ec, ev.value);
1446
268
    }
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::bool_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::bool_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::bool_handler_event&) const
Unexecuted instantiation: boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::bool_handler_event&) const
1447
1448
    bool
1449
    operator()(null_handler_event&) const
1450
10
    {
1451
10
        return handler.on_null(ec);
1452
10
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::bool_conversion_tag, bool, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::null_handler_event&) const
Line
Count
Source
1450
2
    {
1451
2
        return handler.on_null(ec);
1452
2
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, unsigned long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::null_handler_event&) const
Line
Count
Source
1450
2
    {
1451
2
        return handler.on_null(ec);
1452
2
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::integral_conversion_tag, long, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::null_handler_event&) const
Line
Count
Source
1450
2
    {
1451
2
        return handler.on_null(ec);
1452
2
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::floating_point_conversion_tag, double, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::null_handler_event&) const
Line
Count
Source
1450
2
    {
1451
2
        return handler.on_null(ec);
1452
2
    }
boost::json::detail::event_visitor<boost::json::detail::converting_handler<boost::json::detail::string_like_conversion_tag, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > > > >::operator()(boost::json::detail::null_handler_event&) const
Line
Count
Source
1450
2
    {
1451
2
        return handler.on_null(ec);
1452
2
    }
1453
};
1454
1455
// L<T...> -> variant< monostate, get_handler<T, P>... >
1456
template< class P, class L >
1457
using inner_handler_variant = mp11::mp_push_front<
1458
    mp11::mp_transform_q<
1459
        mp11::mp_bind_back<get_handler, P>,
1460
        mp11::mp_apply<variant2::variant, L>>,
1461
    variant2::monostate>;
1462
1463
template< class T, class P >
1464
class converting_handler<variant_conversion_tag, T, P>
1465
{
1466
private:
1467
    using variant_size = mp11::mp_size<T>;
1468
1469
    T* value_;
1470
    P* parent_;
1471
1472
    std::string string_;
1473
    std::vector< parse_event > events_;
1474
    inner_handler_variant<converting_handler, T> inner_;
1475
    int inner_active_ = -1;
1476
1477
public:
1478
    converting_handler( converting_handler const& ) = delete;
1479
    converting_handler& operator=( converting_handler const& ) = delete;
1480
1481
    converting_handler( T* v, P* p )
1482
8.84k
        : value_( v )
1483
8.84k
        , parent_( p )
1484
8.84k
    {}
1485
1486
    bool signal_value(system::error_code& ec)
1487
9.62k
    {
1488
9.62k
        inner_.template emplace<0>();
1489
9.62k
        inner_active_ = -1;
1490
9.62k
        events_.clear();
1491
9.62k
        return parent_->signal_value(ec);
1492
9.62k
    }
1493
1494
    bool signal_end(system::error_code& ec)
1495
0
    {
1496
0
        return parent_->signal_end(ec);
1497
0
    }
1498
1499
    struct alternative_selector
1500
    {
1501
        converting_handler* self;
1502
1503
        template< class I >
1504
        void
1505
        operator()( I ) const
1506
21.6k
        {
1507
21.6k
            using V = mp11::mp_at<T, I>;
1508
21.6k
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
21.6k
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
21.6k
        }
void boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::alternative_selector::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
1506
9.63k
        {
1507
9.63k
            using V = mp11::mp_at<T, I>;
1508
9.63k
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
9.63k
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
9.63k
        }
void boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::alternative_selector::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
1506
9.36k
        {
1507
9.36k
            using V = mp11::mp_at<T, I>;
1508
9.36k
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
9.36k
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
9.36k
        }
void boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::alternative_selector::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
1506
1.12k
        {
1507
1.12k
            using V = mp11::mp_at<T, I>;
1508
1.12k
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
1.12k
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
1.12k
        }
void boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::alternative_selector::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
1506
960
        {
1507
960
            using V = mp11::mp_at<T, I>;
1508
960
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
960
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
960
        }
void boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::alternative_selector::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
1506
600
        {
1507
600
            using V = mp11::mp_at<T, I>;
1508
600
            auto& v = self->value_->template emplace<I::value>( V{} );
1509
600
            self->inner_.template emplace<I::value + 1>(&v, self);
1510
600
        }
1511
    };
1512
    void
1513
    next_alternative()
1514
21.7k
    {
1515
21.7k
        if( ++inner_active_ >= static_cast<int>(variant_size::value) )
1516
11
            return;
1517
1518
21.6k
        mp11::mp_with_index< variant_size::value >(
1519
21.6k
            inner_active_, alternative_selector{this} );
1520
21.6k
    }
1521
1522
    struct event_processor
1523
    {
1524
        converting_handler* self;
1525
        system::error_code& ec;
1526
        parse_event& event;
1527
1528
        template< class I >
1529
        bool operator()( I ) const
1530
21.6k
        {
1531
21.6k
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
21.6k
            using Handler = remove_cvref<decltype(handler)>;
1533
21.6k
            return variant2::visit(
1534
21.6k
                event_visitor<Handler>{handler, ec}, event );
1535
21.6k
        }
bool boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::event_processor::operator()<std::__1::integral_constant<unsigned long, 0ul> >(std::__1::integral_constant<unsigned long, 0ul>) const
Line
Count
Source
1530
9.63k
        {
1531
9.63k
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
9.63k
            using Handler = remove_cvref<decltype(handler)>;
1533
9.63k
            return variant2::visit(
1534
9.63k
                event_visitor<Handler>{handler, ec}, event );
1535
9.63k
        }
bool boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::event_processor::operator()<std::__1::integral_constant<unsigned long, 1ul> >(std::__1::integral_constant<unsigned long, 1ul>) const
Line
Count
Source
1530
9.36k
        {
1531
9.36k
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
9.36k
            using Handler = remove_cvref<decltype(handler)>;
1533
9.36k
            return variant2::visit(
1534
9.36k
                event_visitor<Handler>{handler, ec}, event );
1535
9.36k
        }
bool boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::event_processor::operator()<std::__1::integral_constant<unsigned long, 2ul> >(std::__1::integral_constant<unsigned long, 2ul>) const
Line
Count
Source
1530
1.12k
        {
1531
1.12k
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
1.12k
            using Handler = remove_cvref<decltype(handler)>;
1533
1.12k
            return variant2::visit(
1534
1.12k
                event_visitor<Handler>{handler, ec}, event );
1535
1.12k
        }
bool boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::event_processor::operator()<std::__1::integral_constant<unsigned long, 3ul> >(std::__1::integral_constant<unsigned long, 3ul>) const
Line
Count
Source
1530
960
        {
1531
960
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
960
            using Handler = remove_cvref<decltype(handler)>;
1533
960
            return variant2::visit(
1534
960
                event_visitor<Handler>{handler, ec}, event );
1535
960
        }
bool boost::json::detail::converting_handler<boost::json::detail::variant_conversion_tag, boost::variant2::variant<bool, unsigned long, long, double, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::event_processor::operator()<std::__1::integral_constant<unsigned long, 4ul> >(std::__1::integral_constant<unsigned long, 4ul>) const
Line
Count
Source
1530
600
        {
1531
600
            auto& handler = variant2::get<I::value + 1>(self->inner_);
1532
600
            using Handler = remove_cvref<decltype(handler)>;
1533
600
            return variant2::visit(
1534
600
                event_visitor<Handler>{handler, ec}, event );
1535
600
        }
1536
    };
1537
    bool process_events(system::error_code& ec)
1538
9.63k
    {
1539
9.63k
        constexpr std::size_t N = variant_size::value;
1540
1541
        // should be pointers not iterators, otherwise MSVC crashes
1542
9.63k
        auto const last = events_.data() + events_.size();
1543
9.63k
        auto first = last - 1;
1544
9.63k
        bool ok = false;
1545
1546
9.63k
        if( inner_active_ < 0 )
1547
9.63k
            next_alternative();
1548
9.63k
        do
1549
21.7k
        {
1550
21.7k
            if( static_cast<std::size_t>(inner_active_) >= N )
1551
11
            {
1552
11
                BOOST_JSON_FAIL( ec, error::exhausted_variants );
1553
11
                return false;
1554
11
            }
1555
1556
31.3k
            for ( ; first != last; ++first )
1557
21.6k
            {
1558
21.6k
                ok = mp11::mp_with_index< N >(
1559
21.6k
                    inner_active_, event_processor{this, ec, *first} );
1560
21.6k
                if( !ok )
1561
12.0k
                {
1562
12.0k
                    first = events_.data();
1563
12.0k
                    next_alternative();
1564
12.0k
                    ec.clear();
1565
12.0k
                    break;
1566
12.0k
                }
1567
21.6k
            }
1568
21.6k
        }
1569
21.6k
        while( !ok );
1570
1571
9.62k
        return true;
1572
9.63k
    }
1573
1574
#define BOOST_JSON_INVOKE_INNER(ev, ec) \
1575
0
    events_.emplace_back( ev ); \
1576
0
    return process_events(ec);
1577
1578
    bool on_object_begin( system::error_code& ec )
1579
4
    {
1580
4
        BOOST_JSON_INVOKE_INNER( object_begin_handler_event{}, ec );
1581
0
    }
1582
1583
    bool on_object_end( system::error_code& ec )
1584
0
    {
1585
0
        BOOST_JSON_INVOKE_INNER( object_end_handler_event{}, ec );
1586
0
    }
1587
1588
    bool on_array_begin( system::error_code& ec )
1589
5
    {
1590
5
        BOOST_JSON_INVOKE_INNER( array_begin_handler_event{}, ec );
1591
0
    }
1592
1593
    bool on_array_end( system::error_code& ec )
1594
0
    {
1595
0
        if( !inner_active_ )
1596
0
            return signal_end(ec);
1597
1598
0
        BOOST_JSON_INVOKE_INNER( array_end_handler_event{}, ec );
1599
0
    }
1600
1601
    bool on_key_part( system::error_code&, string_view sv )
1602
0
    {
1603
0
        string_.append(sv);
1604
0
        return true;
1605
0
    }
1606
1607
    bool on_key( system::error_code& ec, string_view sv )
1608
0
    {
1609
0
        string_.append(sv);
1610
0
        BOOST_JSON_INVOKE_INNER( key_handler_event{ std::move(string_) }, ec );
1611
0
    }
1612
1613
    bool on_string_part( system::error_code&, string_view sv )
1614
983
    {
1615
983
        string_.append(sv);
1616
983
        return true;
1617
983
    }
1618
1619
    bool on_string( system::error_code& ec, string_view sv )
1620
589
    {
1621
589
        string_.append(sv);
1622
589
        BOOST_JSON_INVOKE_INNER(
1623
589
            string_handler_event{ std::move(string_) }, ec );
1624
0
    }
1625
1626
    bool on_number_part( system::error_code& )
1627
1
    {
1628
1
        return true;
1629
1
    }
1630
1631
    bool on_int64( system::error_code& ec, std::int64_t v )
1632
8.15k
    {
1633
8.15k
        BOOST_JSON_INVOKE_INNER( int64_handler_event{v}, ec );
1634
0
    }
1635
1636
    bool on_uint64( system::error_code& ec, std::uint64_t v )
1637
255
    {
1638
255
        BOOST_JSON_INVOKE_INNER( uint64_handler_event{v}, ec );
1639
0
    }
1640
1641
    bool on_double( system::error_code& ec, double v )
1642
360
    {
1643
360
        BOOST_JSON_INVOKE_INNER( double_handler_event{v}, ec );
1644
0
    }
1645
1646
    bool on_bool( system::error_code& ec, bool v )
1647
268
    {
1648
268
        BOOST_JSON_INVOKE_INNER( bool_handler_event{v}, ec );
1649
0
    }
1650
1651
    bool on_null( system::error_code& ec )
1652
2
    {
1653
2
        BOOST_JSON_INVOKE_INNER( null_handler_event{}, ec );
1654
0
    }
1655
1656
#undef BOOST_JSON_INVOKE_INNER
1657
};
1658
1659
// optional handler
1660
template<class V, class P>
1661
class converting_handler<optional_conversion_tag, V, P>
1662
{
1663
private:
1664
    using inner_type = value_result_type<V>;
1665
    using inner_handler_type = get_handler<inner_type, converting_handler>;
1666
1667
    V* value_;
1668
    P* parent_;
1669
1670
    inner_type inner_value_ = {};
1671
    inner_handler_type inner_;
1672
    bool inner_active_ = false;
1673
1674
public:
1675
    converting_handler( converting_handler const& ) = delete;
1676
    converting_handler& operator=( converting_handler const& ) = delete;
1677
1678
    converting_handler( V* v, P* p )
1679
44.2k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
44.2k
    {}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::optional<bool>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
1679
8.84k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::optional<long>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
1679
8.84k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::optional<unsigned long>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
1679
8.84k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::optional<double>*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
1679
8.84k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
8.84k
    {}
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::converting_handler(std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >*, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> >*)
Line
Count
Source
1679
8.84k
        : value_(v), parent_(p), inner_(&inner_value_, this)
1680
8.84k
    {}
1681
1682
    bool signal_value(system::error_code& ec)
1683
2.80k
    {
1684
2.80k
        *value_ = std::move(inner_value_);
1685
1686
2.80k
        inner_active_ = false;
1687
2.80k
        return parent_->signal_value(ec);
1688
2.80k
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
1683
82
    {
1684
82
        *value_ = std::move(inner_value_);
1685
1686
82
        inner_active_ = false;
1687
82
        return parent_->signal_value(ec);
1688
82
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
1683
1.13k
    {
1684
1.13k
        *value_ = std::move(inner_value_);
1685
1686
1.13k
        inner_active_ = false;
1687
1.13k
        return parent_->signal_value(ec);
1688
1.13k
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
1683
474
    {
1684
474
        *value_ = std::move(inner_value_);
1685
1686
474
        inner_active_ = false;
1687
474
        return parent_->signal_value(ec);
1688
474
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
1683
66
    {
1684
66
        *value_ = std::move(inner_value_);
1685
1686
66
        inner_active_ = false;
1687
66
        return parent_->signal_value(ec);
1688
66
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_value(boost::system::error_code&)
Line
Count
Source
1683
1.04k
    {
1684
1.04k
        *value_ = std::move(inner_value_);
1685
1686
1.04k
        inner_active_ = false;
1687
1.04k
        return parent_->signal_value(ec);
1688
1.04k
    }
1689
1690
    bool signal_end(system::error_code& ec)
1691
0
    {
1692
0
        return parent_->signal_end(ec);
1693
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::signal_end(boost::system::error_code&)
1694
1695
#define BOOST_JSON_INVOKE_INNER(fn) \
1696
3.71k
    if( !inner_active_ ) \
1697
2.98k
        inner_active_ = true; \
1698
0
    return inner_.fn;
1699
1700
    bool on_object_begin( system::error_code& ec )
1701
5
    {
1702
5
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
1701
1
    {
1702
1
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
1701
1
    {
1702
1
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
1701
1
    {
1702
1
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
1701
1
    {
1702
1
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_begin(boost::system::error_code&)
Line
Count
Source
1701
1
    {
1702
1
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1703
0
    }
1704
1705
    bool on_object_end( system::error_code& ec )
1706
0
    {
1707
0
        BOOST_JSON_INVOKE_INNER( on_object_end(ec) );
1708
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_object_end(boost::system::error_code&)
1709
1710
    bool on_array_begin( system::error_code& ec )
1711
5
    {
1712
5
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
1711
1
    {
1712
1
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
1711
1
    {
1712
1
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
1711
1
    {
1712
1
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
1711
1
    {
1712
1
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_begin(boost::system::error_code&)
Line
Count
Source
1711
1
    {
1712
1
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1713
0
    }
1714
1715
    bool on_array_end( system::error_code& ec )
1716
0
    {
1717
0
        if( !inner_active_ )
1718
0
            return signal_end(ec);
1719
1720
0
        BOOST_JSON_INVOKE_INNER( on_array_end(ec) );
1721
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_array_end(boost::system::error_code&)
1722
1723
    bool on_key_part( system::error_code& ec, string_view sv )
1724
0
    {
1725
0
        BOOST_JSON_INVOKE_INNER( on_key_part(ec, sv) );
1726
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key_part(boost::system::error_code&, boost::core::basic_string_view<char>)
1727
1728
    bool on_key( system::error_code& ec, string_view sv )
1729
0
    {
1730
0
        BOOST_JSON_INVOKE_INNER( on_key(ec, sv) );
1731
0
    }
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
Unexecuted instantiation: boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_key(boost::system::error_code&, boost::core::basic_string_view<char>)
1732
1733
    bool on_string_part( system::error_code& ec, string_view sv )
1734
755
    {
1735
755
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1734
1
    {
1735
1
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1734
1
    {
1735
1
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1734
1
    {
1735
1
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1734
1
    {
1735
1
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string_part(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1734
751
    {
1735
751
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1736
0
    }
1737
1738
    bool on_string( system::error_code& ec, string_view sv )
1739
1.05k
    {
1740
1.05k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1739
1
    {
1740
1
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1739
1
    {
1740
1
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1739
1
    {
1740
1
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1739
1
    {
1740
1
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_string(boost::system::error_code&, boost::core::basic_string_view<char>)
Line
Count
Source
1739
1.04k
    {
1740
1.04k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1741
0
    }
1742
1743
    bool on_number_part( system::error_code& ec )
1744
5
    {
1745
5
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
1744
1
    {
1745
1
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
1744
1
    {
1745
1
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
1744
1
    {
1745
1
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
1744
1
    {
1745
1
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_number_part(boost::system::error_code&)
Line
Count
Source
1744
1
    {
1745
1
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1746
0
    }
1747
1748
    bool on_int64( system::error_code& ec, std::int64_t v )
1749
1.03k
    {
1750
1.03k
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
1749
1
    {
1750
1
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
1749
82
    {
1750
82
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
1749
874
    {
1750
874
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
1749
73
    {
1750
73
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_int64(boost::system::error_code&, long)
Line
Count
Source
1749
1
    {
1750
1
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1751
0
    }
1752
1753
    bool on_uint64( system::error_code& ec, std::uint64_t v )
1754
574
    {
1755
574
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
1754
1
    {
1755
1
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
1754
94
    {
1755
94
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
1754
289
    {
1755
289
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
1754
189
    {
1755
189
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_uint64(boost::system::error_code&, unsigned long)
Line
Count
Source
1754
1
    {
1755
1
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1756
0
    }
1757
1758
    bool on_double( system::error_code& ec, double v )
1759
217
    {
1760
217
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
1759
1
    {
1760
1
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
1759
1
    {
1760
1
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
1759
2
    {
1760
2
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
1759
212
    {
1760
212
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_double(boost::system::error_code&, double)
Line
Count
Source
1759
1
    {
1760
1
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1761
0
    }
1762
1763
    bool on_bool( system::error_code& ec, bool v )
1764
70
    {
1765
70
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
1764
66
    {
1765
66
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
1764
1
    {
1765
1
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
1764
1
    {
1765
1
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
1764
1
    {
1765
1
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_bool(boost::system::error_code&, bool)
Line
Count
Source
1764
1
    {
1765
1
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1766
0
    }
1767
1768
    bool on_null(system::error_code& ec)
1769
1.77k
    {
1770
1.77k
        if( !inner_active_ )
1771
1.77k
        {
1772
1.77k
            *value_ = {};
1773
1.77k
            return this->parent_->signal_value(ec);
1774
1.77k
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
1.77k
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<bool>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null(boost::system::error_code&)
Line
Count
Source
1769
812
    {
1770
812
        if( !inner_active_ )
1771
812
        {
1772
812
            *value_ = {};
1773
812
            return this->parent_->signal_value(ec);
1774
812
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
812
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null(boost::system::error_code&)
Line
Count
Source
1769
194
    {
1770
194
        if( !inner_active_ )
1771
194
        {
1772
194
            *value_ = {};
1773
194
            return this->parent_->signal_value(ec);
1774
194
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
194
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<unsigned long>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null(boost::system::error_code&)
Line
Count
Source
1769
83
    {
1770
83
        if( !inner_active_ )
1771
83
        {
1772
83
            *value_ = {};
1773
83
            return this->parent_->signal_value(ec);
1774
83
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
83
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<double>, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null(boost::system::error_code&)
Line
Count
Source
1769
66
    {
1770
66
        if( !inner_active_ )
1771
66
        {
1772
66
            *value_ = {};
1773
66
            return this->parent_->signal_value(ec);
1774
66
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
66
    }
boost::json::detail::converting_handler<boost::json::detail::optional_conversion_tag, std::__1::optional<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, boost::json::detail::converting_handler<boost::json::detail::described_class_conversion_tag, Object, boost::json::detail::into_handler<Object> > >::on_null(boost::system::error_code&)
Line
Count
Source
1769
616
    {
1770
616
        if( !inner_active_ )
1771
616
        {
1772
616
            *value_ = {};
1773
616
            return this->parent_->signal_value(ec);
1774
616
        }
1775
0
        else
1776
0
        {
1777
0
            return inner_.on_null(ec);
1778
0
        }
1779
616
    }
1780
1781
#undef BOOST_JSON_INVOKE_INNER
1782
};
1783
1784
// path handler
1785
template< class V, class P >
1786
class converting_handler<path_conversion_tag, V, P>
1787
    : public scalar_handler<P, error::not_string>
1788
{
1789
private:
1790
    V* value_;
1791
    bool cleared_ = false;
1792
1793
public:
1794
    converting_handler( V* v, P* p )
1795
        : converting_handler::scalar_handler(p)
1796
        , value_(v)
1797
    {}
1798
1799
    bool on_string_part( system::error_code&, string_view sv )
1800
    {
1801
        if( !cleared_ )
1802
        {
1803
            cleared_ = true;
1804
            value_->clear();
1805
        }
1806
1807
        value_->concat( sv.begin(), sv.end() );
1808
        return true;
1809
    }
1810
1811
    bool on_string(system::error_code& ec, string_view sv)
1812
    {
1813
        if( !cleared_ )
1814
            value_->clear();
1815
        else
1816
            cleared_ = false;
1817
1818
        value_->concat( sv.begin(), sv.end() );
1819
1820
        return this->parent_->signal_value(ec);
1821
    }
1822
};
1823
1824
// into_handler
1825
template< class V >
1826
class into_handler
1827
{
1828
private:
1829
1830
    using inner_handler_type = get_handler<V, into_handler>;
1831
1832
    inner_handler_type inner_;
1833
    bool inner_active_ = true;
1834
1835
public:
1836
1837
    into_handler( into_handler const& ) = delete;
1838
    into_handler& operator=( into_handler const& ) = delete;
1839
1840
public:
1841
1842
    static constexpr std::size_t max_object_size = object::max_size();
1843
    static constexpr std::size_t max_array_size = array::max_size();
1844
    static constexpr std::size_t max_key_size = string::max_size();
1845
    static constexpr std::size_t max_string_size = string::max_size();
1846
1847
public:
1848
1849
8.84k
    explicit into_handler( V* v ): inner_( v, this )
1850
8.84k
    {
1851
8.84k
    }
1852
1853
    bool signal_value(system::error_code&)
1854
566
    {
1855
566
        return true;
1856
566
    }
1857
1858
    bool signal_end(system::error_code&)
1859
0
    {
1860
0
        return true;
1861
0
    }
1862
1863
    bool on_document_begin( system::error_code& )
1864
8.84k
    {
1865
8.84k
        return true;
1866
8.84k
    }
1867
1868
    bool on_document_end( system::error_code& )
1869
73
    {
1870
73
        inner_active_ = false;
1871
73
        return true;
1872
73
    }
1873
1874
#define BOOST_JSON_INVOKE_INNER(f) \
1875
1.72M
    if( !inner_active_ ) \
1876
1.72M
    { \
1877
0
        BOOST_JSON_FAIL( ec, error::extra_data ); \
1878
0
        return false; \
1879
0
    } \
1880
1.72M
    else \
1881
1.72M
        return inner_.f
1882
1883
    bool on_object_begin( system::error_code& ec )
1884
11.1k
    {
1885
11.1k
        BOOST_JSON_INVOKE_INNER( on_object_begin(ec) );
1886
11.1k
    }
1887
1888
    bool on_object_end( std::size_t, system::error_code& ec )
1889
3.51k
    {
1890
3.51k
        BOOST_JSON_INVOKE_INNER( on_object_end(ec) );
1891
3.51k
    }
1892
1893
    bool on_array_begin( system::error_code& ec )
1894
14.5k
    {
1895
14.5k
        BOOST_JSON_INVOKE_INNER( on_array_begin(ec) );
1896
14.5k
    }
1897
1898
    bool on_array_end( std::size_t, system::error_code& ec )
1899
10.5k
    {
1900
10.5k
        BOOST_JSON_INVOKE_INNER( on_array_end(ec) );
1901
10.5k
    }
1902
1903
    bool on_key_part( string_view sv, std::size_t, system::error_code& ec )
1904
9.28k
    {
1905
9.28k
        BOOST_JSON_INVOKE_INNER( on_key_part(ec, sv) );
1906
9.28k
    }
1907
1908
    bool on_key( string_view sv, std::size_t, system::error_code& ec )
1909
266k
    {
1910
266k
        BOOST_JSON_INVOKE_INNER( on_key(ec, sv) );
1911
266k
    }
1912
1913
    bool on_string_part( string_view sv, std::size_t, system::error_code& ec )
1914
17.6k
    {
1915
17.6k
        BOOST_JSON_INVOKE_INNER( on_string_part(ec, sv) );
1916
17.6k
    }
1917
1918
    bool on_string( string_view sv, std::size_t, system::error_code& ec )
1919
90.7k
    {
1920
90.7k
        BOOST_JSON_INVOKE_INNER( on_string(ec, sv) );
1921
90.7k
    }
1922
1923
    bool on_number_part( string_view, system::error_code& ec )
1924
138
    {
1925
138
        BOOST_JSON_INVOKE_INNER( on_number_part(ec) );
1926
138
    }
1927
1928
    bool on_int64( std::int64_t v, string_view, system::error_code& ec )
1929
1.14M
    {
1930
1.14M
        BOOST_JSON_INVOKE_INNER( on_int64(ec, v) );
1931
1.14M
    }
1932
1933
    bool on_uint64( std::uint64_t v, string_view, system::error_code& ec )
1934
9.04k
    {
1935
9.04k
        BOOST_JSON_INVOKE_INNER( on_uint64(ec, v) );
1936
9.04k
    }
1937
1938
    bool on_double( double v, string_view, system::error_code& ec )
1939
27.2k
    {
1940
27.2k
        BOOST_JSON_INVOKE_INNER( on_double(ec, v) );
1941
27.2k
    }
1942
1943
    bool on_bool( bool v, system::error_code& ec )
1944
116k
    {
1945
116k
        BOOST_JSON_INVOKE_INNER( on_bool(ec, v) );
1946
116k
    }
1947
1948
    bool on_null( system::error_code& ec )
1949
2.91k
    {
1950
2.91k
        BOOST_JSON_INVOKE_INNER( on_null(ec) );
1951
2.91k
    }
1952
1953
    bool on_comment_part(string_view, system::error_code&)
1954
0
    {
1955
0
        return true;
1956
0
    }
1957
1958
    bool on_comment(string_view, system::error_code&)
1959
0
    {
1960
0
        return true;
1961
0
    }
1962
1963
#undef BOOST_JSON_INVOKE_INNER
1964
};
1965
1966
} // namespace detail
1967
} // namespace boost
1968
} // namespace json
1969
1970
#endif