Coverage Report

Created: 2026-05-16 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/jsoncons/include/jsoncons/basic_json.hpp
Line
Count
Source
1
// Copyright 2013-2026 Daniel Parker
2
// Distributed under the Boost license, Version 1.0.
3
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5
// See https://github.com/danielaparker/jsoncons for latest version
6
7
#ifndef JSONCONS_BASIC_JSON_HPP
8
#define JSONCONS_BASIC_JSON_HPP
9
10
#include <algorithm> // std::swap
11
#include <cstdint>
12
#include <cstring>
13
#include <functional>
14
#include <initializer_list> // std::initializer_list
15
#include <istream> 
16
#include <istream> // std::basic_istream
17
#include <limits> // std::numeric_limits
18
#include <memory> // std::allocator
19
#include <ostream> 
20
#include <stdexcept>
21
#include <string>
22
#include <system_error>
23
#include <type_traits> // std::enable_if
24
#include <typeinfo>
25
#include <utility> // std::move
26
#include <vector>
27
28
#include <jsoncons/allocator_set.hpp>
29
#include <jsoncons/config/compiler_support.hpp>
30
#include <jsoncons/config/version.hpp>
31
#include <jsoncons/conv_error.hpp>
32
#include <jsoncons/conversion_result.hpp>
33
#include <jsoncons/json_array.hpp>
34
#include <jsoncons/json_decoder.hpp>
35
#include <jsoncons/json_encoder.hpp>
36
#include <jsoncons/json_error.hpp>
37
#include <jsoncons/json_exception.hpp>
38
#include <jsoncons/json_fwd.hpp>
39
#include <jsoncons/json_object.hpp>
40
#include <jsoncons/json_options.hpp>
41
#include <jsoncons/json_reader.hpp>
42
#include <jsoncons/json_type.hpp>
43
#include <jsoncons/reflect/json_conv_traits.hpp>
44
#include <jsoncons/pretty_print.hpp>
45
#include <jsoncons/semantic_tag.hpp>
46
#include <jsoncons/ser_utils.hpp>
47
#include <jsoncons/source.hpp>
48
#include <jsoncons/utility/bigint.hpp>
49
#include <jsoncons/utility/byte_string.hpp>
50
#include <jsoncons/utility/heap_string.hpp>
51
#include <jsoncons/utility/more_type_traits.hpp>
52
#include <jsoncons/utility/unicode_traits.hpp>
53
54
#if defined(JSONCONS_HAS_POLYMORPHIC_ALLOCATOR)
55
#include <memory_resource> // std::poymorphic_allocator
56
#endif
57
58
namespace jsoncons { 
59
60
    namespace ext_traits {
61
62
        template <typename Container>
63
        using 
64
        container_array_iterator_type_t = decltype(Container::array_iterator_type);
65
        template <typename Container>
66
        using 
67
        container_const_array_iterator_type_t = decltype(Container::const_array_iterator_type);
68
        template <typename Container>
69
        using 
70
        container_object_iterator_type_t = decltype(Container::object_iterator_type);
71
        template <typename Container>
72
        using 
73
        container_const_object_iterator_type_t = decltype(Container::const_object_iterator_type);
74
75
        namespace detail {
76
77
            template <typename T>
78
            using
79
            basic_json_t = basic_json<typename T::char_type,typename T::policy_type,typename T::allocator_type>;
80
81
        } // namespace detail
82
83
        template <typename T,typename Enable = void>
84
        struct is_basic_json : std::false_type {};
85
86
        template <typename T>
87
        struct is_basic_json<T,
88
            typename std::enable_if<ext_traits::is_detected<detail::basic_json_t,typename std::decay<T>::type>::value>::type
89
        > : std::true_type {};
90
91
    } // namespace ext_traits
92
93
    namespace detail {
94
95
        template <typename Iterator,typename Enable = void>
96
        class random_access_iterator_wrapper
97
        {
98
        };
99
100
        template <typename Iterator>
101
        class random_access_iterator_wrapper<Iterator,
102
                 typename std::enable_if<std::is_same<typename std::iterator_traits<Iterator>::iterator_category, 
103
                                                      std::random_access_iterator_tag>::value>::type> 
104
        { 
105
            Iterator it_; 
106
            bool has_value_;
107
108
            template <typename Iter,typename Enable> 
109
            friend class random_access_iterator_wrapper;
110
        public:
111
            using iterator_category = std::random_access_iterator_tag;
112
113
            using value_type = typename std::iterator_traits<Iterator>::value_type;
114
            using difference_type = typename std::iterator_traits<Iterator>::difference_type;
115
            using pointer = typename std::iterator_traits<Iterator>::pointer;
116
            using reference = typename std::iterator_traits<Iterator>::reference;
117
        
118
0
            random_access_iterator_wrapper() : it_(), has_value_(false) 
119
0
            { 
120
0
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::random_access_iterator_wrapper()
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::random_access_iterator_wrapper()
121
122
6.01M
            explicit random_access_iterator_wrapper(Iterator ptr) : it_(ptr), has_value_(true)  
123
6.01M
            {
124
6.01M
            }
jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::random_access_iterator_wrapper(std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>)
Line
Count
Source
122
6.01M
            explicit random_access_iterator_wrapper(Iterator ptr) : it_(ptr), has_value_(true)  
123
6.01M
            {
124
6.01M
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::random_access_iterator_wrapper(std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>)
125
126
            random_access_iterator_wrapper(const random_access_iterator_wrapper&) = default;
127
            random_access_iterator_wrapper(random_access_iterator_wrapper&&) = default;
128
            random_access_iterator_wrapper& operator=(const random_access_iterator_wrapper&) = default;
129
            random_access_iterator_wrapper& operator=(random_access_iterator_wrapper&&) = default;
130
131
            template <typename Iter,
132
                      typename=typename std::enable_if<!std::is_same<Iter,Iterator>::value && std::is_convertible<Iter,Iterator>::value>::type>
133
            random_access_iterator_wrapper(const random_access_iterator_wrapper<Iter>& other)
134
                : it_(other.it_), has_value_(other.has_value_)
135
            {
136
            }
137
138
            operator Iterator() const
139
            { 
140
                return it_; 
141
            }
142
143
            reference operator*() const 
144
122k
            {
145
122k
                return *it_;
146
122k
            }
jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator*() const
Line
Count
Source
144
122k
            {
145
122k
                return *it_;
146
122k
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator*() const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator*() const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator*() const
147
148
            pointer operator->() const 
149
            {
150
                return &(*it_);
151
            }
152
153
            random_access_iterator_wrapper& operator++() 
154
122k
            {
155
122k
                ++it_;
156
122k
                return *this;
157
122k
            }
jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator++()
Line
Count
Source
154
122k
            {
155
122k
                ++it_;
156
122k
                return *this;
157
122k
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator++()
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator++()
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator++()
158
159
            random_access_iterator_wrapper operator++(int) 
160
            {
161
                random_access_iterator_wrapper temp = *this;
162
                ++*this;
163
                return temp;
164
            }
165
166
            random_access_iterator_wrapper& operator--() 
167
            {
168
                --it_;
169
                return *this;
170
            }
171
172
            random_access_iterator_wrapper operator--(int) 
173
            {
174
                random_access_iterator_wrapper temp = *this;
175
                --*this;
176
                return temp;
177
            }
178
179
            random_access_iterator_wrapper& operator+=(const difference_type offset) 
180
            {
181
                it_ += offset;
182
                return *this;
183
            }
184
185
            random_access_iterator_wrapper operator+(const difference_type offset) const 
186
            {
187
                random_access_iterator_wrapper temp = *this;
188
                return temp += offset;
189
            }
190
191
            random_access_iterator_wrapper& operator-=(const difference_type offset) 
192
            {
193
                return *this += -offset;
194
            }
195
196
            random_access_iterator_wrapper operator-(const difference_type offset) const 
197
            {
198
                random_access_iterator_wrapper temp = *this;
199
                return temp -= offset;
200
            }
201
202
            difference_type operator-(const random_access_iterator_wrapper& rhs) const noexcept
203
            {
204
                return it_ - rhs.it_;
205
            }
206
207
            reference operator[](const difference_type offset) const noexcept
208
            {
209
                return *(*this + offset);
210
            }
211
212
            bool operator==(const random_access_iterator_wrapper& rhs) const noexcept
213
3.12M
            {
214
3.12M
                if (!has_value_ || !rhs.has_value_)
215
0
                {
216
0
                    return has_value_ == rhs.has_value_ ? true : false;
217
0
                }
218
3.12M
                else
219
3.12M
                {
220
3.12M
                    return it_ == rhs.it_;
221
3.12M
                }
222
3.12M
            }
jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const
Line
Count
Source
213
3.12M
            {
214
3.12M
                if (!has_value_ || !rhs.has_value_)
215
0
                {
216
0
                    return has_value_ == rhs.has_value_ ? true : false;
217
0
                }
218
3.12M
                else
219
3.12M
                {
220
3.12M
                    return it_ == rhs.it_;
221
3.12M
                }
222
3.12M
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator==(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const
223
224
            bool operator!=(const random_access_iterator_wrapper& rhs) const noexcept
225
3.12M
            {
226
3.12M
                return !(*this == rhs);
227
3.12M
            }
jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const
Line
Count
Source
225
3.12M
            {
226
3.12M
                return !(*this == rhs);
227
3.12M
            }
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&) const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const
Unexecuted instantiation: jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>::operator!=(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&) const
228
229
            bool operator<(const random_access_iterator_wrapper& rhs) const noexcept
230
            {
231
                if (!has_value_ || !rhs.has_value_)
232
                {
233
                    return has_value_ == rhs.has_value_ ? false :(has_value_ ? false : true);
234
                }
235
                else
236
                {
237
                    return it_ < rhs.it_;
238
                }
239
            }
240
241
            bool operator>(const random_access_iterator_wrapper& rhs) const noexcept
242
            {
243
                return rhs < *this;
244
            }
245
246
            bool operator<=(const random_access_iterator_wrapper& rhs) const noexcept
247
            {
248
                return !(rhs < *this);
249
            }
250
251
            bool operator>=(const random_access_iterator_wrapper& rhs) const noexcept
252
            {
253
                return !(*this < rhs);
254
            }
255
256
            inline 
257
            friend random_access_iterator_wrapper<Iterator> operator+(
258
                difference_type offset, random_access_iterator_wrapper<Iterator> next) 
259
            {
260
                return next += offset;
261
            }
262
263
            bool has_value() const
264
            {
265
                return has_value_;
266
            }
267
        };
268
    } // namespace detail
269
270
    struct sorted_policy 
271
    {
272
        template <typename KeyT,typename Json>
273
        using object = sorted_json_object<KeyT,Json,std::vector>;
274
275
        template <typename Json>
276
        using array = json_array<Json,std::vector>;
277
        
278
        template <typename CharT,typename CharTraits,typename Allocator>
279
        using member_key = std::basic_string<CharT, CharTraits, Allocator>;
280
    };
281
282
    struct order_preserving_policy
283
    {
284
        template <typename KeyT,typename Json>
285
        using object = order_preserving_json_object<KeyT,Json,std::vector>;
286
287
        template <typename Json>
288
        using array = json_array<Json,std::vector>;
289
        
290
        template <typename CharT,typename CharTraits,typename Allocator>
291
        using member_key = std::basic_string<CharT, CharTraits, Allocator>;
292
    };
293
294
    template <typename Policy,typename KeyT,typename Json,typename Enable=void>
295
    struct object_iterator_typedefs
296
    {
297
    };
298
299
    template <typename Policy,typename KeyT,typename Json>
300
    struct object_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if<
301
        !ext_traits::is_detected<ext_traits::container_object_iterator_type_t, Policy>::value ||
302
        !ext_traits::is_detected<ext_traits::container_const_object_iterator_type_t, Policy>::value>::type>
303
    {
304
        using object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object<KeyT,Json>::iterator>;                    
305
        using const_object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object<KeyT,Json>::const_iterator>;
306
    };
307
308
    template <typename Policy,typename KeyT,typename Json>
309
    struct object_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if<
310
        ext_traits::is_detected<ext_traits::container_object_iterator_type_t, Policy>::value &&
311
        ext_traits::is_detected<ext_traits::container_const_object_iterator_type_t, Policy>::value>::type>
312
    {
313
        using object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template object_iterator<KeyT,Json>>;
314
        using const_object_iterator_type = jsoncons::detail::random_access_iterator_wrapper<typename Policy::template const_object_iterator<KeyT,Json>>;
315
    };
316
317
    template <typename Policy,typename KeyT,typename Json,typename Enable=void>
318
    struct array_iterator_typedefs
319
    {
320
    };
321
322
    template <typename Policy,typename KeyT,typename Json>
323
    struct array_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if<
324
        !ext_traits::is_detected<ext_traits::container_array_iterator_type_t, Policy>::value ||
325
        !ext_traits::is_detected<ext_traits::container_const_array_iterator_type_t, Policy>::value>::type>
326
    {
327
        using array_iterator_type = typename Policy::template array<Json>::iterator;
328
        using const_array_iterator_type = typename Policy::template array<Json>::const_iterator;
329
    };
330
331
    template <typename Policy,typename KeyT,typename Json>
332
    struct array_iterator_typedefs<Policy, KeyT, Json,typename std::enable_if<
333
        ext_traits::is_detected<ext_traits::container_array_iterator_type_t, Policy>::value &&
334
        ext_traits::is_detected<ext_traits::container_const_array_iterator_type_t, Policy>::value>::type>
335
    {
336
        using array_iterator_type = typename Policy::template array_iterator_type<Json>;
337
        using const_array_iterator_type = typename Policy::template const_array_iterator_type<Json>;
338
    };
339
340
    template <typename IteratorT,typename ConstIteratorT>
341
    class range 
342
    {
343
    public:
344
        using iterator = IteratorT;
345
        using const_iterator = ConstIteratorT;
346
        using reverse_iterator = std::reverse_iterator<IteratorT>;
347
        using const_reverse_iterator = std::reverse_iterator<ConstIteratorT>;
348
    private:
349
        iterator first_;
350
        iterator last_;
351
    public:
352
        range(const IteratorT& first, const IteratorT& last)
353
5.71M
            : first_(first), last_(last)
354
5.71M
        {
355
5.71M
        }
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::range(std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*> const&, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*> const&)
Line
Count
Source
353
69.9k
            : first_(first), last_(last)
354
69.9k
        {
355
69.9k
        }
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::range(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void> const&)
Line
Count
Source
353
3.00M
            : first_(first), last_(last)
354
3.00M
        {
355
3.00M
        }
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::range(std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*> const&, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*> const&)
Line
Count
Source
353
2.64M
            : first_(first), last_(last)
354
2.64M
        {
355
2.64M
        }
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::range(jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void> const&)
356
357
        iterator begin() const noexcept
358
5.71M
        {
359
5.71M
            return first_;
360
5.71M
        }
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::begin() const
Line
Count
Source
358
69.9k
        {
359
69.9k
            return first_;
360
69.9k
        }
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::begin() const
Line
Count
Source
358
3.00M
        {
359
3.00M
            return first_;
360
3.00M
        }
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::begin() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::begin() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::begin() const
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::begin() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::begin() const
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::begin() const
Line
Count
Source
358
2.64M
        {
359
2.64M
            return first_;
360
2.64M
        }
361
        iterator end() const noexcept
362
5.71M
        {
363
5.71M
            return last_;
364
5.71M
        }
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::end() const
Line
Count
Source
362
69.9k
        {
363
69.9k
            return last_;
364
69.9k
        }
jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::end() const
Line
Count
Source
362
3.00M
        {
363
3.00M
            return last_;
364
3.00M
        }
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > const*> >::end() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> > > const*>, void> >::end() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::end() const
Unexecuted instantiation: jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::end() const
Unexecuted instantiation: jsoncons::range<jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > >*>, void>, jsoncons::detail::random_access_iterator_wrapper<std::__1::__wrap_iter<jsoncons::key_value<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> > > const*>, void> >::end() const
jsoncons::range<std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >*>, std::__1::__wrap_iter<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> > const*> >::end() const
Line
Count
Source
362
2.64M
        {
363
2.64M
            return last_;
364
2.64M
        }
365
        const_iterator cbegin() const noexcept
366
        {
367
            return first_;
368
        }
369
        const_iterator cend() const noexcept
370
        {
371
            return last_;
372
        }
373
        reverse_iterator rbegin() const noexcept
374
        {
375
            return reverse_iterator(last_);
376
        }
377
        reverse_iterator rend() const noexcept
378
        {
379
            return reverse_iterator(first_);
380
        }
381
        const_reverse_iterator crbegin() const noexcept
382
        {
383
            return reverse_iterator(last_);
384
        }
385
        const_reverse_iterator crend() const noexcept
386
        {
387
            return reverse_iterator(first_);
388
        }
389
    };
390
391
    template <typename CharT,typename Policy,typename Allocator>
392
    class basic_json
393
    {
394
    public:
395
        static_assert(std::allocator_traits<Allocator>::is_always_equal::value || ext_traits::is_propagating_allocator<Allocator>::value,
396
                      "Regular stateful allocators must be wrapped with std::scoped_allocator_adaptor");
397
398
        using allocator_type = Allocator; 
399
400
        using policy_type = Policy;
401
        using char_type = CharT;
402
        using char_traits_type = std::char_traits<char_type>;
403
        using string_view_type = jsoncons::basic_string_view<char_type,char_traits_type>;
404
405
        using char_allocator_type = typename std::allocator_traits<allocator_type>:: template rebind_alloc<char_type>;
406
407
        using string_type = std::basic_string<char_type,char_traits_type,char_allocator_type>;
408
409
        using key_type = typename policy_type::template member_key<char_type,char_traits_type,char_allocator_type>;
410
411
        using reference = basic_json&;
412
        using const_reference = const basic_json&;
413
        using pointer = basic_json*;
414
        using const_pointer = const basic_json*;
415
416
        using key_value_type = key_value<key_type,basic_json>;
417
418
        using array = typename policy_type::template array<basic_json>;
419
420
        using key_value_allocator_type = typename std::allocator_traits<allocator_type>:: template rebind_alloc<key_value_type>;                       
421
422
        using object = typename policy_type::template object<key_type,basic_json>;
423
424
        using object_iterator = typename object_iterator_typedefs<policy_type,key_type,basic_json>::object_iterator_type;                    
425
        using const_object_iterator = typename object_iterator_typedefs<policy_type,key_type,basic_json>::const_object_iterator_type;                    
426
        using array_iterator = typename array_iterator_typedefs<policy_type,key_type,basic_json>::array_iterator_type;                    
427
        using const_array_iterator = typename array_iterator_typedefs<policy_type,key_type,basic_json>::const_array_iterator_type;
428
429
        using object_range_type = range<object_iterator, const_object_iterator>;
430
        using const_object_range_type = range<const_object_iterator, const_object_iterator>;
431
        using array_range_type = range<array_iterator, const_array_iterator>;
432
        using const_array_range_type = range<const_array_iterator, const_array_iterator>;
433
434
    private:
435
436
        static constexpr uint8_t major_type_shift = 0x04;
437
        static constexpr uint8_t additional_information_mask = (1U << 4) - 1;
438
439
    public:
440
        struct common_storage
441
        {
442
            uint8_t storage_kind_:4;
443
            uint8_t short_str_length_:4;
444
            semantic_tag tag_;
445
        };
446
447
        struct null_storage 
448
        {
449
            uint8_t storage_kind_:4;
450
            uint8_t short_str_length_:4;
451
            semantic_tag tag_;
452
453
            null_storage(semantic_tag tag = semantic_tag::none)
454
114M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::null)), short_str_length_(0), tag_(tag)
455
114M
            {
456
114M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage::null_storage(jsoncons::semantic_tag)
Line
Count
Source
454
103M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::null)), short_str_length_(0), tag_(tag)
455
103M
            {
456
103M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage::null_storage(jsoncons::semantic_tag)
Line
Count
Source
454
10.9M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::null)), short_str_length_(0), tag_(tag)
455
10.9M
            {
456
10.9M
            }
457
        };
458
459
        struct empty_object_storage
460
        {
461
            uint8_t storage_kind_:4;
462
            uint8_t short_str_length_:4;
463
            semantic_tag tag_;
464
465
            empty_object_storage(semantic_tag tag)
466
19.5k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::empty_object)), short_str_length_(0), tag_(tag)
467
19.5k
            {
468
19.5k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage::empty_object_storage(jsoncons::semantic_tag)
Line
Count
Source
466
16.9k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::empty_object)), short_str_length_(0), tag_(tag)
467
16.9k
            {
468
16.9k
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage::empty_object_storage(jsoncons::semantic_tag)
Line
Count
Source
466
2.62k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::empty_object)), short_str_length_(0), tag_(tag)
467
2.62k
            {
468
2.62k
            }
469
        };  
470
471
        struct bool_storage
472
        {
473
            uint8_t storage_kind_:4;
474
            uint8_t short_str_length_:4;
475
            semantic_tag tag_;
476
            bool val_;
477
478
            bool_storage(bool val, semantic_tag tag)
479
7.88M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::boolean)), short_str_length_(0), tag_(tag),
480
7.88M
                  val_(val)
481
7.88M
            {
482
7.88M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage::bool_storage(bool, jsoncons::semantic_tag)
Line
Count
Source
479
7.80M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::boolean)), short_str_length_(0), tag_(tag),
480
7.80M
                  val_(val)
481
7.80M
            {
482
7.80M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage::bool_storage(bool, jsoncons::semantic_tag)
Line
Count
Source
479
86.9k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::boolean)), short_str_length_(0), tag_(tag),
480
86.9k
                  val_(val)
481
86.9k
            {
482
86.9k
            }
483
484
            bool value() const
485
            {
486
                return val_;
487
            }
488
489
        };
490
491
        struct int64_storage
492
        {
493
            uint8_t storage_kind_:4;
494
            uint8_t short_str_length_:4;
495
            semantic_tag tag_;
496
            int64_t val_;
497
498
            int64_storage(int64_t val, 
499
                       semantic_tag tag = semantic_tag::none)
500
11.1M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::int64)), short_str_length_(0), tag_(tag),
501
11.1M
                  val_(val)
502
11.1M
            {
503
11.1M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage::int64_storage(long, jsoncons::semantic_tag)
Line
Count
Source
500
10.7M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::int64)), short_str_length_(0), tag_(tag),
501
10.7M
                  val_(val)
502
10.7M
            {
503
10.7M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage::int64_storage(long, jsoncons::semantic_tag)
Line
Count
Source
500
373k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::int64)), short_str_length_(0), tag_(tag),
501
373k
                  val_(val)
502
373k
            {
503
373k
            }
504
505
            int64_t value() const
506
            {
507
                return val_;
508
            }
509
        };
510
511
        struct uint64_storage
512
        {
513
            uint8_t storage_kind_:4;
514
            uint8_t short_str_length_:4;
515
            semantic_tag tag_;
516
            uint64_t val_;
517
518
            uint64_storage(uint64_t val, 
519
                        semantic_tag tag = semantic_tag::none)
520
38.4M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::uint64)), short_str_length_(0), tag_(tag),
521
38.4M
                  val_(val)
522
38.4M
            {
523
38.4M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage::uint64_storage(unsigned long, jsoncons::semantic_tag)
Line
Count
Source
520
38.2M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::uint64)), short_str_length_(0), tag_(tag),
521
38.2M
                  val_(val)
522
38.2M
            {
523
38.2M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage::uint64_storage(unsigned long, jsoncons::semantic_tag)
Line
Count
Source
520
120k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::uint64)), short_str_length_(0), tag_(tag),
521
120k
                  val_(val)
522
120k
            {
523
120k
            }
524
525
            uint64_t value() const
526
            {
527
                return val_;
528
            }
529
        };
530
531
        struct half_storage
532
        {
533
            uint8_t storage_kind_:4;
534
            uint8_t short_str_length_:4;
535
            semantic_tag tag_;
536
            uint16_t val_;
537
538
            half_storage(uint16_t val, semantic_tag tag = semantic_tag::none)
539
230
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::half_float)), short_str_length_(0), tag_(tag),
540
230
                  val_(val)
541
230
            {
542
230
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage::half_storage(unsigned short, jsoncons::semantic_tag)
Line
Count
Source
539
230
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::half_float)), short_str_length_(0), tag_(tag),
540
230
                  val_(val)
541
230
            {
542
230
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage::half_storage(unsigned short, jsoncons::semantic_tag)
543
544
            uint16_t value() const
545
            {
546
                return val_;
547
            }
548
        };
549
550
        struct double_storage
551
        {
552
            uint8_t storage_kind_:4;
553
            uint8_t short_str_length_:4;
554
            semantic_tag tag_;
555
            double val_;
556
557
            double_storage(double val, 
558
                           semantic_tag tag = semantic_tag::none)
559
1.56M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::float64)), short_str_length_(0), tag_(tag),
560
1.56M
                  val_(val)
561
1.56M
            {
562
1.56M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage::double_storage(double, jsoncons::semantic_tag)
Line
Count
Source
559
1.51M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::float64)), short_str_length_(0), tag_(tag),
560
1.51M
                  val_(val)
561
1.51M
            {
562
1.51M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage::double_storage(double, jsoncons::semantic_tag)
Line
Count
Source
559
45.1k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::float64)), short_str_length_(0), tag_(tag),
560
45.1k
                  val_(val)
561
45.1k
            {
562
45.1k
            }
563
564
            double value() const
565
            {
566
                return val_;
567
            }
568
        };
569
570
        struct short_string_storage
571
        {
572
            static constexpr size_t capacity = (2*sizeof(uint64_t) - 2*sizeof(uint8_t))/sizeof(char_type);
573
            static constexpr size_t max_length = capacity - 1;
574
575
            uint8_t storage_kind_:4;
576
            uint8_t short_str_length_:4;
577
            semantic_tag tag_;
578
            char_type data_[capacity];
579
580
            short_string_storage(const char_type* p, uint8_t length, semantic_tag tag)
581
29.5M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::short_str)), short_str_length_(length), tag_(tag)
582
29.5M
            {
583
29.5M
                JSONCONS_ASSERT(length <= max_length);
584
29.5M
                std::memcpy(data_,p,length*sizeof(char_type));
585
29.5M
                data_[length] = 0;
586
29.5M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::short_string_storage(char const*, unsigned char, jsoncons::semantic_tag)
Line
Count
Source
581
5.14M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::short_str)), short_str_length_(length), tag_(tag)
582
5.14M
            {
583
5.14M
                JSONCONS_ASSERT(length <= max_length);
584
5.14M
                std::memcpy(data_,p,length*sizeof(char_type));
585
5.14M
                data_[length] = 0;
586
5.14M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::short_string_storage(char const*, unsigned char, jsoncons::semantic_tag)
Line
Count
Source
581
24.3M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::short_str)), short_str_length_(length), tag_(tag)
582
24.3M
            {
583
24.3M
                JSONCONS_ASSERT(length <= max_length);
584
24.3M
                std::memcpy(data_,p,length*sizeof(char_type));
585
24.3M
                data_[length] = 0;
586
24.3M
            }
587
588
            short_string_storage(const short_string_storage& other)
589
29.7k
                : storage_kind_(other.storage_kind_), short_str_length_(other.short_str_length_), tag_(other.tag_)
590
29.7k
            {
591
29.7k
                std::memcpy(data_,other.data_,other.short_str_length_*sizeof(char_type));
592
29.7k
                data_[short_str_length_] = 0;
593
29.7k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::short_string_storage(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage const&)
Line
Count
Source
589
29.7k
                : storage_kind_(other.storage_kind_), short_str_length_(other.short_str_length_), tag_(other.tag_)
590
29.7k
            {
591
29.7k
                std::memcpy(data_,other.data_,other.short_str_length_*sizeof(char_type));
592
29.7k
                data_[short_str_length_] = 0;
593
29.7k
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::short_string_storage(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage const&)
594
           
595
            short_string_storage& operator=(const short_string_storage& other) = delete;
596
597
            uint8_t length() const
598
0
            {
599
0
                return short_str_length_;
600
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage::length() const
601
602
            const char_type* data() const
603
            {
604
                return data_;
605
            }
606
607
            const char_type* c_str() const
608
            {
609
                return data_;
610
            }
611
        };
612
613
        // long_string_storage
614
        struct long_string_storage
615
        {
616
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<char_type,null_type,Allocator>;
617
            using pointer = typename heap_string_factory_type::pointer;
618
619
            uint8_t storage_kind_:4;
620
            uint8_t short_str_length_:4;
621
            semantic_tag tag_;
622
            pointer ptr_;
623
624
            long_string_storage(pointer ptr, semantic_tag tag)
625
63.6k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(tag), ptr_(ptr)
626
63.6k
            {
627
63.6k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::long_string_storage(jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*, jsoncons::semantic_tag)
Line
Count
Source
625
34.8k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(tag), ptr_(ptr)
626
34.8k
            {
627
34.8k
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::long_string_storage(jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*, jsoncons::semantic_tag)
Line
Count
Source
625
28.8k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(tag), ptr_(ptr)
626
28.8k
            {
627
28.8k
            }
628
629
            long_string_storage(const long_string_storage& other)
630
325k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
631
325k
            {
632
325k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::long_string_storage(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage const&)
Line
Count
Source
630
294k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
631
294k
            {
632
294k
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::long_string_storage(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage const&)
Line
Count
Source
630
30.6k
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::long_str)), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
631
30.6k
            {
632
30.6k
            }
633
            
634
            long_string_storage& operator=(const long_string_storage& other) = delete;
635
636
            semantic_tag tag() const
637
            {
638
                return tag_;
639
            }
640
641
            const char_type* data() const
642
            {
643
                return ptr_->data();
644
            }
645
646
            const char_type* c_str() const
647
            {
648
                return ptr_->c_str();
649
            }
650
651
            std::size_t length() const
652
0
            {
653
0
                return ptr_->length();
654
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage::length() const
655
        
656
            Allocator get_allocator() const
657
            {
658
                return ptr_->get_allocator();
659
            }
660
        };
661
662
        // byte_string_storage
663
        struct byte_string_storage 
664
        {
665
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<uint8_t,uint64_t,Allocator>;
666
            using pointer = typename heap_string_factory_type::pointer;
667
668
            uint8_t storage_kind_:4;
669
            uint8_t short_str_length_:4;
670
            semantic_tag tag_;
671
            pointer ptr_;
672
673
            byte_string_storage(pointer ptr, semantic_tag tag)
674
3.24M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::byte_str)), short_str_length_(0), tag_(tag), ptr_(ptr)
675
3.24M
            {
676
3.24M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::byte_string_storage(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*, jsoncons::semantic_tag)
Line
Count
Source
674
3.24M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::byte_str)), short_str_length_(0), tag_(tag), ptr_(ptr)
675
3.24M
            {
676
3.24M
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::byte_string_storage(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*, jsoncons::semantic_tag)
677
678
            byte_string_storage(const byte_string_storage& other)
679
6.99M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
680
6.99M
            {
681
6.99M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::byte_string_storage(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage const&)
Line
Count
Source
679
6.99M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
680
6.99M
            {
681
6.99M
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::byte_string_storage(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage const&)
682
683
            byte_string_storage& operator=(const byte_string_storage& other) = delete;
684
685
            semantic_tag tag() const
686
            {
687
                return tag_;
688
            }
689
690
            const uint8_t* data() const
691
            {
692
                return ptr_->data();
693
            }
694
695
            std::size_t length() const
696
0
            {
697
0
                return ptr_->length();
698
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::length() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage::length() const
699
700
            uint64_t ext_tag() const
701
            {
702
                return ptr_->extra();
703
            }
704
705
            Allocator get_allocator() const
706
            {
707
                return ptr_->get_allocator();
708
            }
709
        };
710
#if defined(__GNUC__) && JSONCONS_GCC_AVAILABLE(12,0,0)
711
# pragma GCC diagnostic push
712
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
713
#endif
714
715
        struct array_storage
716
        {
717
            using allocator_type = typename std::allocator_traits<Allocator>:: template rebind_alloc<array>;
718
            using pointer = typename std::allocator_traits<allocator_type>::pointer;
719
720
            uint8_t storage_kind_:4;
721
            uint8_t short_str_length_:4;
722
            semantic_tag tag_;
723
            pointer ptr_;
724
725
            array_storage(pointer ptr, semantic_tag tag)
726
13.7M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::array)), short_str_length_(0), tag_(tag), ptr_(ptr)
727
13.7M
            {
728
13.7M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::array_storage(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*, jsoncons::semantic_tag)
Line
Count
Source
726
10.5M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::array)), short_str_length_(0), tag_(tag), ptr_(ptr)
727
10.5M
            {
728
10.5M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::array_storage(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*, jsoncons::semantic_tag)
Line
Count
Source
726
3.20M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::array)), short_str_length_(0), tag_(tag), ptr_(ptr)
727
3.20M
            {
728
3.20M
            }
729
730
            array_storage(const array_storage& other)
731
34.7M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
732
34.7M
            {
733
34.7M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::array_storage(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage const&)
Line
Count
Source
731
23.8M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
732
23.8M
            {
733
23.8M
            }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::array_storage(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage const&)
Line
Count
Source
731
10.9M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
732
10.9M
            {
733
10.9M
            }
734
735
            void assign(const array_storage& other)
736
            {
737
                tag_ = other.tag_;
738
                *ptr_ = *(other.ptr_);
739
            }
740
741
            array_storage& operator=(const array_storage& other) = delete;
742
743
            semantic_tag tag() const
744
            {
745
                return tag_;
746
            }
747
748
            Allocator get_allocator() const
749
            {
750
                return ptr_->get_allocator();
751
            }
752
753
            array& value()
754
63.3M
            {
755
63.3M
                return *ptr_;
756
63.3M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value()
Line
Count
Source
754
24.5M
            {
755
24.5M
                return *ptr_;
756
24.5M
            }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value()
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value()
Line
Count
Source
754
38.7M
            {
755
38.7M
                return *ptr_;
756
38.7M
            }
757
758
            const array& value() const
759
194k
            {
760
194k
                return *ptr_;
761
194k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() const
Line
Count
Source
759
194k
            {
760
194k
                return *ptr_;
761
194k
            }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage::value() const
762
        };
763
764
        // object_storage
765
        struct object_storage
766
        {
767
            using allocator_type = typename std::allocator_traits<Allocator>:: template rebind_alloc<object>;
768
            using pointer = typename std::allocator_traits<allocator_type>::pointer;
769
770
            uint8_t storage_kind_:4;
771
            uint8_t short_str_length_:4;
772
            semantic_tag tag_;
773
            pointer ptr_;
774
775
            object_storage(pointer ptr, semantic_tag tag)
776
16.1M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::object)), short_str_length_(0), tag_(tag), ptr_(ptr)
777
16.1M
            {
778
16.1M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::object_storage(jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*, jsoncons::semantic_tag)
Line
Count
Source
776
16.1M
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::object)), short_str_length_(0), tag_(tag), ptr_(ptr)
777
16.1M
            {
778
16.1M
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::object_storage(jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*, jsoncons::semantic_tag)
779
780
            explicit object_storage(const object_storage& other)
781
55.8M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
782
55.8M
            {
783
55.8M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::object_storage(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage const&)
Line
Count
Source
781
55.8M
                : storage_kind_(other.storage_kind_), short_str_length_(0), tag_(other.tag_), ptr_(other.ptr_)
782
55.8M
            {
783
55.8M
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::object_storage(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage const&)
784
785
            void assign(const object_storage& other)
786
            {
787
                tag_ = other.tag_;
788
                *ptr_ = *(other.ptr_);
789
            }
790
791
            object_storage& operator=(const object_storage& other) = delete;
792
793
            semantic_tag tag() const
794
            {
795
                return tag_;
796
            }
797
798
            object& value()
799
9.10M
            {
800
9.10M
                JSONCONS_ASSERT(ptr_ != nullptr);
801
9.10M
                return *ptr_;
802
9.10M
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value()
Line
Count
Source
799
9.10M
            {
800
9.10M
                JSONCONS_ASSERT(ptr_ != nullptr);
801
9.10M
                return *ptr_;
802
9.10M
            }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value()
803
804
            const object& value() const
805
61.7k
            {
806
61.7k
                JSONCONS_ASSERT(ptr_ != nullptr);
807
61.7k
                return *ptr_;
808
61.7k
            }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() const
Line
Count
Source
805
61.7k
            {
806
61.7k
                JSONCONS_ASSERT(ptr_ != nullptr);
807
61.7k
                return *ptr_;
808
61.7k
            }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage::value() const
809
810
            Allocator get_allocator() const
811
            {
812
                JSONCONS_ASSERT(ptr_ != nullptr);
813
                return ptr_->get_allocator();
814
            }
815
        };
816
#if defined(__GNUC__) && JSONCONS_GCC_AVAILABLE(12,0,0)
817
# pragma GCC diagnostic pop
818
#endif
819
820
    private:
821
        struct const_ref_storage 
822
        {
823
            uint8_t storage_kind_:4;
824
            uint8_t short_str_length_:4;
825
            semantic_tag tag_;
826
            const basic_json* ptr_;
827
828
            const_ref_storage(const basic_json& ref)
829
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::json_const_ref)), short_str_length_(0), tag_(ref.tag()),
830
                  ptr_(std::addressof(ref))
831
            {
832
            }
833
834
            const basic_json& value() const
835
0
            {
836
0
                return *ptr_;
837
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage::value() const
838
        };
839
840
        struct ref_storage 
841
        {
842
            uint8_t storage_kind_:4;
843
            uint8_t short_str_length_:4;
844
            semantic_tag tag_;
845
            basic_json* ptr_;
846
847
            ref_storage(basic_json& ref)
848
                : storage_kind_(static_cast<uint8_t>(json_storage_kind::json_ref)), short_str_length_(0), tag_(ref.tag()),
849
                  ptr_(std::addressof(ref))
850
            {
851
            }
852
853
            basic_json& value() 
854
0
            {
855
0
                return *ptr_;
856
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage::value()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage::value()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage::value()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage::value()
857
858
            const basic_json& value() const
859
0
            {
860
0
                return *ptr_;
861
0
            }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage::value() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage::value() const
862
        };
863
864
        union 
865
        {
866
            common_storage common_;
867
            null_storage null_;
868
            bool_storage boolean_;
869
            int64_storage int64_;
870
            uint64_storage uint64_;
871
            half_storage half_float_;
872
            double_storage float64_;
873
            short_string_storage short_str_;
874
            long_string_storage long_str_;
875
            byte_string_storage byte_str_;
876
            array_storage array_;
877
            object_storage object_;
878
            empty_object_storage empty_object_;
879
            const_ref_storage json_const_pointer_;
880
            ref_storage json_ref_;
881
        };
882
883
        void destroy()
884
449M
        {
885
449M
            switch (storage_kind())
886
449M
            {
887
34.8k
                case json_storage_kind::long_str:
888
34.8k
                {
889
34.8k
                    if (cast<long_string_storage>().ptr_ != nullptr)
890
34.8k
                    {
891
34.8k
                        long_string_storage::heap_string_factory_type::destroy(cast<long_string_storage>().ptr_);
892
34.8k
                    }
893
34.8k
                    break;
894
0
                }
895
3.24M
                case json_storage_kind::byte_str:
896
3.24M
                    if (cast<byte_string_storage>().ptr_ != nullptr)
897
3.24M
                    {
898
3.24M
                        byte_string_storage::heap_string_factory_type::destroy(cast<byte_string_storage>().ptr_);
899
3.24M
                    }
900
3.24M
                    break;
901
10.5M
                case json_storage_kind::array:
902
10.5M
                {
903
10.5M
                    if (cast<array_storage>().ptr_ != nullptr)
904
10.5M
                    {
905
10.5M
                        auto& stor = cast<array_storage>();
906
10.5M
                        typename array_storage::allocator_type alloc{stor.ptr_->get_allocator()};
907
10.5M
                        std::allocator_traits<typename array_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_));
908
10.5M
                        std::allocator_traits<typename array_storage::allocator_type>::deallocate(alloc, stor.ptr_,1);
909
10.5M
                    }
910
10.5M
                    break;
911
0
                }
912
16.1M
                case json_storage_kind::object:
913
16.1M
                {
914
16.1M
                    if (cast<object_storage>().ptr_ != nullptr)
915
16.1M
                    {
916
16.1M
                        auto& stor = cast<object_storage>();
917
16.1M
                        typename object_storage::allocator_type alloc{stor.ptr_->get_allocator()};
918
16.1M
                        std::allocator_traits<typename object_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_));
919
16.1M
                        std::allocator_traits<typename object_storage::allocator_type>::deallocate(alloc, stor.ptr_,1);
920
16.1M
                    }
921
16.1M
                    break;
922
0
                }
923
419M
                default:
924
419M
                    break;
925
449M
            }
926
449M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::destroy()
Line
Count
Source
884
449M
        {
885
449M
            switch (storage_kind())
886
449M
            {
887
34.8k
                case json_storage_kind::long_str:
888
34.8k
                {
889
34.8k
                    if (cast<long_string_storage>().ptr_ != nullptr)
890
34.8k
                    {
891
34.8k
                        long_string_storage::heap_string_factory_type::destroy(cast<long_string_storage>().ptr_);
892
34.8k
                    }
893
34.8k
                    break;
894
0
                }
895
3.24M
                case json_storage_kind::byte_str:
896
3.24M
                    if (cast<byte_string_storage>().ptr_ != nullptr)
897
3.24M
                    {
898
3.24M
                        byte_string_storage::heap_string_factory_type::destroy(cast<byte_string_storage>().ptr_);
899
3.24M
                    }
900
3.24M
                    break;
901
10.5M
                case json_storage_kind::array:
902
10.5M
                {
903
10.5M
                    if (cast<array_storage>().ptr_ != nullptr)
904
10.5M
                    {
905
10.5M
                        auto& stor = cast<array_storage>();
906
10.5M
                        typename array_storage::allocator_type alloc{stor.ptr_->get_allocator()};
907
10.5M
                        std::allocator_traits<typename array_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_));
908
10.5M
                        std::allocator_traits<typename array_storage::allocator_type>::deallocate(alloc, stor.ptr_,1);
909
10.5M
                    }
910
10.5M
                    break;
911
0
                }
912
16.1M
                case json_storage_kind::object:
913
16.1M
                {
914
16.1M
                    if (cast<object_storage>().ptr_ != nullptr)
915
16.1M
                    {
916
16.1M
                        auto& stor = cast<object_storage>();
917
16.1M
                        typename object_storage::allocator_type alloc{stor.ptr_->get_allocator()};
918
16.1M
                        std::allocator_traits<typename object_storage::allocator_type>::destroy(alloc, ext_traits::to_plain_pointer(stor.ptr_));
919
16.1M
                        std::allocator_traits<typename object_storage::allocator_type>::deallocate(alloc, stor.ptr_,1);
920
16.1M
                    }
921
16.1M
                    break;
922
0
                }
923
419M
                default:
924
419M
                    break;
925
449M
            }
926
449M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::destroy()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::destroy()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::destroy()
927
928
        typename long_string_storage::pointer create_long_string(const allocator_type& alloc, const char_type* data, std::size_t length)
929
63.6k
        {
930
63.6k
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<char_type,null_type,Allocator>;
931
63.6k
            return heap_string_factory_type::create(data, length, null_type(), alloc); 
932
63.6k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, char const*, unsigned long)
Line
Count
Source
929
34.8k
        {
930
34.8k
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<char_type,null_type,Allocator>;
931
34.8k
            return heap_string_factory_type::create(data, length, null_type(), alloc); 
932
34.8k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, wchar_t const*, unsigned long)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, wchar_t const*, unsigned long)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_long_string(std::__1::allocator<char> const&, char const*, unsigned long)
Line
Count
Source
929
28.8k
        {
930
28.8k
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<char_type,null_type,Allocator>;
931
28.8k
            return heap_string_factory_type::create(data, length, null_type(), alloc); 
932
28.8k
        }
933
934
        typename byte_string_storage::pointer create_byte_string(const allocator_type& alloc, const uint8_t* data, std::size_t length,
935
            uint64_t ext_tag)
936
3.24M
        {
937
3.24M
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<uint8_t,uint64_t,Allocator>;
938
3.24M
            return heap_string_factory_type::create(data, length, ext_tag, alloc); 
939
3.24M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long)
Line
Count
Source
936
3.24M
        {
937
3.24M
            using heap_string_factory_type = jsoncons::heap::heap_string_factory<uint8_t,uint64_t,Allocator>;
938
3.24M
            return heap_string_factory_type::create(data, length, ext_tag, alloc); 
939
3.24M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_byte_string(std::__1::allocator<char> const&, unsigned char const*, unsigned long, unsigned long)
940
        
941
        template <typename... Args>
942
        typename array_storage::pointer create_array(const allocator_type& alloc, Args&& ... args)
943
13.7M
        {
944
13.7M
            using stor_allocator_type = typename array_storage::allocator_type;
945
13.7M
            stor_allocator_type stor_alloc(alloc);
946
13.7M
            auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1);
947
13.7M
            JSONCONS_TRY
948
13.7M
            {
949
13.7M
                std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), 
950
13.7M
                    std::forward<Args>(args)...);
951
13.7M
            }
952
13.7M
            JSONCONS_CATCH(...)
953
13.7M
            {
954
0
                std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1);
955
0
                JSONCONS_RETHROW;
956
0
            }
957
13.7M
            return ptr;
958
13.7M
        }
jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&)
Line
Count
Source
943
10.5M
        {
944
10.5M
            using stor_allocator_type = typename array_storage::allocator_type;
945
10.5M
            stor_allocator_type stor_alloc(alloc);
946
10.5M
            auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1);
947
10.5M
            JSONCONS_TRY
948
10.5M
            {
949
10.5M
                std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), 
950
10.5M
                    std::forward<Args>(args)...);
951
10.5M
            }
952
10.5M
            JSONCONS_CATCH(...)
953
10.5M
            {
954
0
                std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1);
955
0
                JSONCONS_RETHROW;
956
0
            }
957
10.5M
            return ptr;
958
10.5M
        }
Unexecuted instantiation: jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&)
Unexecuted instantiation: jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&)
jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_array<>(std::__1::allocator<char> const&)
Line
Count
Source
943
3.20M
        {
944
3.20M
            using stor_allocator_type = typename array_storage::allocator_type;
945
3.20M
            stor_allocator_type stor_alloc(alloc);
946
3.20M
            auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1);
947
3.20M
            JSONCONS_TRY
948
3.20M
            {
949
3.20M
                std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), 
950
3.20M
                    std::forward<Args>(args)...);
951
3.20M
            }
952
3.20M
            JSONCONS_CATCH(...)
953
3.20M
            {
954
0
                std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1);
955
0
                JSONCONS_RETHROW;
956
0
            }
957
3.20M
            return ptr;
958
3.20M
        }
959
960
        template <typename... Args>
961
        typename object_storage::pointer create_object(const allocator_type& alloc, Args&& ... args)
962
16.1M
        {
963
16.1M
            using stor_allocator_type = typename object_storage::allocator_type;
964
16.1M
            stor_allocator_type stor_alloc(alloc);
965
16.1M
            auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1);
966
16.1M
            JSONCONS_TRY
967
16.1M
            {
968
16.1M
                std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), 
969
16.1M
                    std::forward<Args>(args)...);
970
16.1M
            }
971
16.1M
            JSONCONS_CATCH(...)
972
16.1M
            {
973
0
                std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1);
974
0
                JSONCONS_RETHROW;
975
0
            }
976
16.1M
            return ptr;
977
16.1M
        }
jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&)
Line
Count
Source
962
16.1M
        {
963
16.1M
            using stor_allocator_type = typename object_storage::allocator_type;
964
16.1M
            stor_allocator_type stor_alloc(alloc);
965
16.1M
            auto ptr = std::allocator_traits<stor_allocator_type>::allocate(stor_alloc, 1);
966
16.1M
            JSONCONS_TRY
967
16.1M
            {
968
16.1M
                std::allocator_traits<stor_allocator_type>::construct(stor_alloc, ext_traits::to_plain_pointer(ptr), 
969
16.1M
                    std::forward<Args>(args)...);
970
16.1M
            }
971
16.1M
            JSONCONS_CATCH(...)
972
16.1M
            {
973
0
                std::allocator_traits<stor_allocator_type>::deallocate(stor_alloc, ptr,1);
974
0
                JSONCONS_RETHROW;
975
0
            }
976
16.1M
            return ptr;
977
16.1M
        }
Unexecuted instantiation: jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&)
Unexecuted instantiation: jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&)
Unexecuted instantiation: jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&)
Unexecuted instantiation: jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>* jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object<>(std::__1::allocator<char> const&)
978
979
        template <typename StorageType,typename... Args>
980
        void construct(Args&&... args)
981
334M
        {
982
334M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
334M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&)
Line
Count
Source
981
184k
        {
982
184k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
184k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>()
Line
Count
Source
981
67.5M
        {
982
67.5M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
67.5M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&)
Line
Count
Source
981
6.60M
        {
982
6.60M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
6.60M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&)
Line
Count
Source
981
22.1M
        {
982
22.1M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
22.1M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&)
Line
Count
Source
981
48.3M
        {
982
48.3M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
48.3M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&)
Line
Count
Source
981
16.9k
        {
982
16.9k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
16.9k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::sorted_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Line
Count
Source
981
16.1M
        {
982
16.1M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
16.1M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&)
Line
Count
Source
981
8.82M
        {
982
8.82M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
8.82M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&)
Line
Count
Source
981
6.19k
        {
982
6.19k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
6.19k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&)
Line
Count
Source
981
51.8k
        {
982
51.8k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
51.8k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&)
Line
Count
Source
981
78.1k
        {
982
78.1k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
78.1k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&)
Line
Count
Source
981
711k
        {
982
711k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
711k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&)
Line
Count
Source
981
22
        {
982
22
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
22
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&)
Line
Count
Source
981
8.02k
        {
982
8.02k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
8.02k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&)
Line
Count
Source
981
29.7k
        {
982
29.7k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
29.7k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage&>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&)
Line
Count
Source
981
38.2M
        {
982
38.2M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
38.2M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&)
Line
Count
Source
981
10.7M
        {
982
10.7M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
10.7M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&)
Line
Count
Source
981
1.51M
        {
982
1.51M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
1.51M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Line
Count
Source
981
10.5M
        {
982
10.5M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
10.5M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&)
Line
Count
Source
981
36.4M
        {
982
36.4M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
36.4M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&)
Line
Count
Source
981
7.80M
        {
982
7.80M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
7.80M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, char const*&, unsigned char, jsoncons::semantic_tag&>(char const*&, unsigned char&&, jsoncons::semantic_tag&)
Line
Count
Source
981
5.14M
        {
982
5.14M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
5.14M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Line
Count
Source
981
34.8k
        {
982
34.8k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
34.8k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Line
Count
Source
981
3.16M
        {
982
3.16M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
3.16M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&)
Line
Count
Source
981
82.0k
        {
982
82.0k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
82.0k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&)
Line
Count
Source
981
230
        {
982
230
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
230
        }
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>()
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::sorted_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage&>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, wchar_t const*&, unsigned char, jsoncons::semantic_tag&>(wchar_t const*&, unsigned char&&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::heap::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::order_preserving_json_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>()
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::order_preserving_json_object<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage&>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, wchar_t const*&, unsigned char, jsoncons::semantic_tag&>(wchar_t const*&, unsigned char&&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::heap::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<wchar_t, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag>(jsoncons::heap::heap_string<unsigned char, unsigned long, std::__1::allocator<char> >*&, jsoncons::semantic_tag&&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, unsigned short&, jsoncons::semantic_tag&>(unsigned short&, jsoncons::semantic_tag&)
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage&)
Line
Count
Source
981
30.6k
        {
982
30.6k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
30.6k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>()
Line
Count
Source
981
10.9M
        {
982
10.9M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
10.9M
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage&)
Line
Count
Source
981
10.9M
        {
982
10.9M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
10.9M
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::semantic_tag>(jsoncons::semantic_tag&&)
Line
Count
Source
981
2.62k
        {
982
2.62k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
2.62k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage&)
Line
Count
Source
981
2.43k
        {
982
2.43k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
2.43k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, unsigned long&, jsoncons::semantic_tag&>(unsigned long&, jsoncons::semantic_tag&)
Line
Count
Source
981
120k
        {
982
120k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
120k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, long&, jsoncons::semantic_tag&>(long&, jsoncons::semantic_tag&)
Line
Count
Source
981
373k
        {
982
373k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
373k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, double&, jsoncons::semantic_tag&>(double&, jsoncons::semantic_tag&)
Line
Count
Source
981
45.1k
        {
982
45.1k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
45.1k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&>(jsoncons::json_array<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >, std::__1::vector>*&, jsoncons::semantic_tag&)
Line
Count
Source
981
3.20M
        {
982
3.20M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
3.20M
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::semantic_tag&>(jsoncons::semantic_tag&)
Line
Count
Source
981
48.8k
        {
982
48.8k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
48.8k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, bool&, jsoncons::semantic_tag&>(bool&, jsoncons::semantic_tag&)
Line
Count
Source
981
86.9k
        {
982
86.9k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
86.9k
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, char const*&, unsigned char, jsoncons::semantic_tag&>(char const*&, unsigned char&&, jsoncons::semantic_tag&)
Line
Count
Source
981
24.3M
        {
982
24.3M
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
24.3M
        }
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::construct<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&>(jsoncons::heap::heap_string<char, jsoncons::null_type, std::__1::allocator<char> >*&, jsoncons::semantic_tag&)
Line
Count
Source
981
28.8k
        {
982
28.8k
            ::new (&cast<StorageType>()) StorageType(std::forward<Args>(args)...);
983
28.8k
        }
984
985
        template <typename T>
986
        struct identity { using type = T*; };
987
    public:
988
        template <typename T> 
989
        T& cast()
990
571M
        {
991
571M
            return cast(identity<T>());
992
571M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>()
Line
Count
Source
990
473k
        {
991
473k
            return cast(identity<T>());
992
473k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>()
Line
Count
Source
990
22.9M
        {
991
22.9M
            return cast(identity<T>());
992
22.9M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>()
Line
Count
Source
990
100M
        {
991
100M
            return cast(identity<T>());
992
100M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>()
Line
Count
Source
990
121M
        {
991
121M
            return cast(identity<T>());
992
121M
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>()
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>()
Line
Count
Source
990
154M
        {
991
154M
            return cast(identity<T>());
992
154M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>()
Line
Count
Source
990
29.3k
        {
991
29.3k
            return cast(identity<T>());
992
29.3k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>()
Line
Count
Source
990
7.90M
        {
991
7.90M
            return cast(identity<T>());
992
7.90M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>()
Line
Count
Source
990
10.9M
        {
991
10.9M
            return cast(identity<T>());
992
10.9M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>()
Line
Count
Source
990
39.7M
        {
991
39.7M
            return cast(identity<T>());
992
39.7M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>()
Line
Count
Source
990
274
        {
991
274
            return cast(identity<T>());
992
274
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>()
Line
Count
Source
990
1.53M
        {
991
1.53M
            return cast(identity<T>());
992
1.53M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>()
Line
Count
Source
990
5.20M
        {
991
5.20M
            return cast(identity<T>());
992
5.20M
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>()
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>()
Line
Count
Source
990
147k
        {
991
147k
            return cast(identity<T>());
992
147k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>()
Line
Count
Source
990
70.2M
        {
991
70.2M
            return cast(identity<T>());
992
70.2M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>()
Line
Count
Source
990
10.9M
        {
991
10.9M
            return cast(identity<T>());
992
10.9M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>()
Line
Count
Source
990
7.48k
        {
991
7.48k
            return cast(identity<T>());
992
7.48k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>()
Line
Count
Source
990
86.9k
        {
991
86.9k
            return cast(identity<T>());
992
86.9k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>()
Line
Count
Source
990
373k
        {
991
373k
            return cast(identity<T>());
992
373k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>()
Line
Count
Source
990
120k
        {
991
120k
            return cast(identity<T>());
992
120k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>()
Line
Count
Source
990
45.1k
        {
991
45.1k
            return cast(identity<T>());
992
45.1k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>()
Line
Count
Source
990
24.3M
        {
991
24.3M
            return cast(identity<T>());
992
24.3M
        }
993
994
        template <typename T> 
995
        const T& cast() const
996
256k
        {
997
256k
            return cast(identity<T>());
998
256k
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() const
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() const
Line
Count
Source
996
194k
        {
997
194k
            return cast(identity<T>());
998
194k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() const
Line
Count
Source
996
61.7k
        {
997
61.7k
            return cast(identity<T>());
998
61.7k
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage const& jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage const& jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>() const
999
    private:
1000
        null_storage& cast(identity<null_storage>) 
1001
132M
        {
1002
132M
            return null_;
1003
132M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>)
Line
Count
Source
1001
121M
        {
1002
121M
            return null_;
1003
121M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>)
Line
Count
Source
1001
10.9M
        {
1002
10.9M
            return null_;
1003
10.9M
        }
1004
1005
        const null_storage& cast(identity<null_storage>) const
1006
        {
1007
            return null_;
1008
        }
1009
1010
        empty_object_storage& cast(identity<empty_object_storage>) 
1011
36.8k
        {
1012
36.8k
            return empty_object_;
1013
36.8k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>)
Line
Count
Source
1011
29.3k
        {
1012
29.3k
            return empty_object_;
1013
29.3k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>)
Line
Count
Source
1011
7.48k
        {
1012
7.48k
            return empty_object_;
1013
7.48k
        }
1014
1015
        const empty_object_storage& cast(identity<empty_object_storage>) const
1016
        {
1017
            return empty_object_;
1018
        }
1019
1020
        bool_storage& cast(identity<bool_storage>) 
1021
7.99M
        {
1022
7.99M
            return boolean_;
1023
7.99M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>)
Line
Count
Source
1021
7.90M
        {
1022
7.90M
            return boolean_;
1023
7.90M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>)
Line
Count
Source
1021
86.9k
        {
1022
86.9k
            return boolean_;
1023
86.9k
        }
1024
1025
        const bool_storage& cast(identity<bool_storage>) const
1026
        {
1027
            return boolean_;
1028
        }
1029
1030
        int64_storage& cast(identity<int64_storage>) 
1031
11.3M
        {
1032
11.3M
            return int64_;
1033
11.3M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>)
Line
Count
Source
1031
10.9M
        {
1032
10.9M
            return int64_;
1033
10.9M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>)
Line
Count
Source
1031
373k
        {
1032
373k
            return int64_;
1033
373k
        }
1034
1035
        const int64_storage& cast(identity<int64_storage>) const
1036
        {
1037
            return int64_;
1038
        }
1039
1040
        uint64_storage& cast(identity<uint64_storage>) 
1041
39.8M
        {
1042
39.8M
            return uint64_;
1043
39.8M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>)
Line
Count
Source
1041
39.7M
        {
1042
39.7M
            return uint64_;
1043
39.7M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>)
Line
Count
Source
1041
120k
        {
1042
120k
            return uint64_;
1043
120k
        }
1044
1045
        const uint64_storage& cast(identity<uint64_storage>) const
1046
        {
1047
            return uint64_;
1048
        }
1049
1050
        half_storage& cast(identity<half_storage>)
1051
274
        {
1052
274
            return half_float_;
1053
274
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>)
Line
Count
Source
1051
274
        {
1052
274
            return half_float_;
1053
274
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>)
1054
1055
        const half_storage& cast(identity<half_storage>) const
1056
        {
1057
            return half_float_;
1058
        }
1059
1060
        double_storage& cast(identity<double_storage>) 
1061
1.58M
        {
1062
1.58M
            return float64_;
1063
1.58M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>)
Line
Count
Source
1061
1.53M
        {
1062
1.53M
            return float64_;
1063
1.53M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>)
Line
Count
Source
1061
45.1k
        {
1062
45.1k
            return float64_;
1063
45.1k
        }
1064
1065
        const double_storage& cast(identity<double_storage>) const
1066
        {
1067
            return float64_;
1068
        }
1069
1070
        short_string_storage& cast(identity<short_string_storage>)
1071
29.5M
        {
1072
29.5M
            return short_str_;
1073
29.5M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>)
Line
Count
Source
1071
5.20M
        {
1072
5.20M
            return short_str_;
1073
5.20M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>)
Line
Count
Source
1071
24.3M
        {
1072
24.3M
            return short_str_;
1073
24.3M
        }
1074
1075
        const short_string_storage& cast(identity<short_string_storage>) const
1076
0
        {
1077
0
            return short_str_;
1078
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>) const
1079
1080
        long_string_storage& cast(identity<long_string_storage>)
1081
621k
        {
1082
621k
            return long_str_;
1083
621k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>)
Line
Count
Source
1081
473k
        {
1082
473k
            return long_str_;
1083
473k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>)
Line
Count
Source
1081
147k
        {
1082
147k
            return long_str_;
1083
147k
        }
1084
1085
        const long_string_storage& cast(identity<long_string_storage>) const
1086
0
        {
1087
0
            return long_str_;
1088
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>) const
1089
1090
        byte_string_storage& cast(identity<byte_string_storage>)
1091
22.9M
        {
1092
22.9M
            return byte_str_;
1093
22.9M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>)
Line
Count
Source
1091
22.9M
        {
1092
22.9M
            return byte_str_;
1093
22.9M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>)
1094
1095
        const byte_string_storage& cast(identity<byte_string_storage>) const
1096
0
        {
1097
0
            return byte_str_;
1098
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>) const
1099
1100
        object_storage& cast(identity<object_storage>)
1101
154M
        {
1102
154M
            return object_;
1103
154M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>)
Line
Count
Source
1101
154M
        {
1102
154M
            return object_;
1103
154M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>)
1104
1105
        const object_storage& cast(identity<object_storage>) const
1106
61.7k
        {
1107
61.7k
            return object_;
1108
61.7k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) const
Line
Count
Source
1106
61.7k
        {
1107
61.7k
            return object_;
1108
61.7k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>) const
1109
1110
        array_storage& cast(identity<array_storage>)
1111
170M
        {
1112
170M
            return array_;
1113
170M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>)
Line
Count
Source
1111
100M
        {
1112
100M
            return array_;
1113
100M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>)
Line
Count
Source
1111
70.2M
        {
1112
70.2M
            return array_;
1113
70.2M
        }
1114
1115
        const array_storage& cast(identity<array_storage>) const
1116
194k
        {
1117
194k
            return array_;
1118
194k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) const
Line
Count
Source
1116
194k
        {
1117
194k
            return array_;
1118
194k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>) const
1119
1120
        const_ref_storage& cast(identity<const_ref_storage>) 
1121
0
        {
1122
0
            return json_const_pointer_;
1123
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>)
1124
1125
        ref_storage& cast(identity<ref_storage>) 
1126
0
        {
1127
0
            return json_ref_;
1128
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>)
1129
1130
        const const_ref_storage& cast(identity<const_ref_storage>) const
1131
0
        {
1132
0
            return json_const_pointer_;
1133
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>) const
1134
1135
        const ref_storage& cast(identity<ref_storage>) const
1136
0
        {
1137
0
            return json_ref_;
1138
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>) const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::cast(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>) const
1139
1140
        template <typename TypeL,typename TypeR>
1141
        void swap_l_r(basic_json& other) noexcept
1142
9.71M
        {
1143
9.71M
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
9.71M
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
73.7k
        {
1143
73.7k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
73.7k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
290k
        {
1143
290k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
290k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
1.38M
        {
1143
1.38M
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
1.38M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
7.07M
        {
1143
7.07M
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
7.07M
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
983
        {
1143
983
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
983
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
12
        {
1143
12
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
12
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
492
        {
1143
492
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
492
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
4.71k
        {
1143
4.71k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
4.71k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
2.03k
        {
1143
2.03k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
2.03k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
2.80k
        {
1143
2.80k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
2.80k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
29.6k
        {
1143
29.6k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
29.6k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
17.3k
        {
1143
17.3k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
17.3k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
4.02k
        {
1143
4.02k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
4.02k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
12.5k
        {
1143
12.5k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
12.5k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
33.3k
        {
1143
33.3k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
33.3k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
28.3k
        {
1143
28.3k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
28.3k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
15.4k
        {
1143
15.4k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
15.4k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
79.5k
        {
1143
79.5k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
79.5k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
240k
        {
1143
240k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
240k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
376k
        {
1143
376k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
376k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
22
        {
1143
22
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
22
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
1.90k
        {
1143
1.90k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
1.90k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
1.75k
        {
1143
1.75k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
1.75k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
1.86k
        {
1143
1.86k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
1.86k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
2.49k
        {
1143
2.49k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
2.49k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
12.1k
        {
1143
12.1k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
12.1k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
2.82k
        {
1143
2.82k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
2.82k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
4.85k
        {
1143
4.85k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
4.85k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
9.90k
        {
1143
9.90k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
9.90k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Line
Count
Source
1142
2.43k
        {
1143
2.43k
            swap_l_r(identity<TypeL>(), identity<TypeR>(), other);
1144
2.43k
        }
1145
1146
        template <typename TypeL,typename TypeR>
1147
        void swap_l_r(identity<TypeL>,identity<TypeR>,basic_json& other) noexcept
1148
9.71M
        {
1149
9.71M
            TypeR temp{other.cast<TypeR>()};
1150
9.71M
            other.construct<TypeL>(cast<TypeL>());
1151
9.71M
            construct<TypeR>(temp);
1152
9.71M
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
73.7k
        {
1149
73.7k
            TypeR temp{other.cast<TypeR>()};
1150
73.7k
            other.construct<TypeL>(cast<TypeL>());
1151
73.7k
            construct<TypeR>(temp);
1152
73.7k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
290k
        {
1149
290k
            TypeR temp{other.cast<TypeR>()};
1150
290k
            other.construct<TypeL>(cast<TypeL>());
1151
290k
            construct<TypeR>(temp);
1152
290k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
1.38M
        {
1149
1.38M
            TypeR temp{other.cast<TypeR>()};
1150
1.38M
            other.construct<TypeL>(cast<TypeL>());
1151
1.38M
            construct<TypeR>(temp);
1152
1.38M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
7.07M
        {
1149
7.07M
            TypeR temp{other.cast<TypeR>()};
1150
7.07M
            other.construct<TypeL>(cast<TypeL>());
1151
7.07M
            construct<TypeR>(temp);
1152
7.07M
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
983
        {
1149
983
            TypeR temp{other.cast<TypeR>()};
1150
983
            other.construct<TypeL>(cast<TypeL>());
1151
983
            construct<TypeR>(temp);
1152
983
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
12
        {
1149
12
            TypeR temp{other.cast<TypeR>()};
1150
12
            other.construct<TypeL>(cast<TypeL>());
1151
12
            construct<TypeR>(temp);
1152
12
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
492
        {
1149
492
            TypeR temp{other.cast<TypeR>()};
1150
492
            other.construct<TypeL>(cast<TypeL>());
1151
492
            construct<TypeR>(temp);
1152
492
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
4.71k
        {
1149
4.71k
            TypeR temp{other.cast<TypeR>()};
1150
4.71k
            other.construct<TypeL>(cast<TypeL>());
1151
4.71k
            construct<TypeR>(temp);
1152
4.71k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
2.03k
        {
1149
2.03k
            TypeR temp{other.cast<TypeR>()};
1150
2.03k
            other.construct<TypeL>(cast<TypeL>());
1151
2.03k
            construct<TypeR>(temp);
1152
2.03k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
2.80k
        {
1149
2.80k
            TypeR temp{other.cast<TypeR>()};
1150
2.80k
            other.construct<TypeL>(cast<TypeL>());
1151
2.80k
            construct<TypeR>(temp);
1152
2.80k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
29.6k
        {
1149
29.6k
            TypeR temp{other.cast<TypeR>()};
1150
29.6k
            other.construct<TypeL>(cast<TypeL>());
1151
29.6k
            construct<TypeR>(temp);
1152
29.6k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
17.3k
        {
1149
17.3k
            TypeR temp{other.cast<TypeR>()};
1150
17.3k
            other.construct<TypeL>(cast<TypeL>());
1151
17.3k
            construct<TypeR>(temp);
1152
17.3k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
4.02k
        {
1149
4.02k
            TypeR temp{other.cast<TypeR>()};
1150
4.02k
            other.construct<TypeL>(cast<TypeL>());
1151
4.02k
            construct<TypeR>(temp);
1152
4.02k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
12.5k
        {
1149
12.5k
            TypeR temp{other.cast<TypeR>()};
1150
12.5k
            other.construct<TypeL>(cast<TypeL>());
1151
12.5k
            construct<TypeR>(temp);
1152
12.5k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
33.3k
        {
1149
33.3k
            TypeR temp{other.cast<TypeR>()};
1150
33.3k
            other.construct<TypeL>(cast<TypeL>());
1151
33.3k
            construct<TypeR>(temp);
1152
33.3k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
28.3k
        {
1149
28.3k
            TypeR temp{other.cast<TypeR>()};
1150
28.3k
            other.construct<TypeL>(cast<TypeL>());
1151
28.3k
            construct<TypeR>(temp);
1152
28.3k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
15.4k
        {
1149
15.4k
            TypeR temp{other.cast<TypeR>()};
1150
15.4k
            other.construct<TypeL>(cast<TypeL>());
1151
15.4k
            construct<TypeR>(temp);
1152
15.4k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
79.5k
        {
1149
79.5k
            TypeR temp{other.cast<TypeR>()};
1150
79.5k
            other.construct<TypeL>(cast<TypeL>());
1151
79.5k
            construct<TypeR>(temp);
1152
79.5k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
240k
        {
1149
240k
            TypeR temp{other.cast<TypeR>()};
1150
240k
            other.construct<TypeL>(cast<TypeL>());
1151
240k
            construct<TypeR>(temp);
1152
240k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
376k
        {
1149
376k
            TypeR temp{other.cast<TypeR>()};
1150
376k
            other.construct<TypeL>(cast<TypeL>());
1151
376k
            construct<TypeR>(temp);
1152
376k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
22
        {
1149
22
            TypeR temp{other.cast<TypeR>()};
1150
22
            other.construct<TypeL>(cast<TypeL>());
1151
22
            construct<TypeR>(temp);
1152
22
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
1.90k
        {
1149
1.90k
            TypeR temp{other.cast<TypeR>()};
1150
1.90k
            other.construct<TypeL>(cast<TypeL>());
1151
1.90k
            construct<TypeR>(temp);
1152
1.90k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
1.75k
        {
1149
1.75k
            TypeR temp{other.cast<TypeR>()};
1150
1.75k
            other.construct<TypeL>(cast<TypeL>());
1151
1.75k
            construct<TypeR>(temp);
1152
1.75k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
1.86k
        {
1149
1.86k
            TypeR temp{other.cast<TypeR>()};
1150
1.86k
            other.construct<TypeL>(cast<TypeL>());
1151
1.86k
            construct<TypeR>(temp);
1152
1.86k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
2.49k
        {
1149
2.49k
            TypeR temp{other.cast<TypeR>()};
1150
2.49k
            other.construct<TypeL>(cast<TypeL>());
1151
2.49k
            construct<TypeR>(temp);
1152
2.49k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
12.1k
        {
1149
12.1k
            TypeR temp{other.cast<TypeR>()};
1150
12.1k
            other.construct<TypeL>(cast<TypeL>());
1151
12.1k
            construct<TypeR>(temp);
1152
12.1k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
2.82k
        {
1149
2.82k
            TypeR temp{other.cast<TypeR>()};
1150
2.82k
            other.construct<TypeL>(cast<TypeL>());
1151
2.82k
            construct<TypeR>(temp);
1152
2.82k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
4.85k
        {
1149
4.85k
            TypeR temp{other.cast<TypeR>()};
1150
4.85k
            other.construct<TypeL>(cast<TypeL>());
1151
4.85k
            construct<TypeR>(temp);
1152
4.85k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
9.90k
        {
1149
9.90k
            TypeR temp{other.cast<TypeR>()};
1150
9.90k
            other.construct<TypeL>(cast<TypeL>());
1151
9.90k
            construct<TypeR>(temp);
1152
9.90k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>, jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l_r<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::identity<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>, jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Line
Count
Source
1148
2.43k
        {
1149
2.43k
            TypeR temp{other.cast<TypeR>()};
1150
2.43k
            other.construct<TypeL>(cast<TypeL>());
1151
2.43k
            construct<TypeR>(temp);
1152
2.43k
        }
1153
1154
        template <typename TypeL>
1155
        void swap_l(basic_json& other) noexcept
1156
9.71M
        {
1157
9.71M
            switch (other.storage_kind())
1158
9.71M
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
110k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
389k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
1.70M
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
7.51M
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
9.71M
            }
1177
9.71M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
8.82M
        {
1157
8.82M
            switch (other.storage_kind())
1158
8.82M
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
73.7k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
290k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
1.38M
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
7.07M
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
8.82M
            }
1177
8.82M
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
6.19k
        {
1157
6.19k
            switch (other.storage_kind())
1158
6.19k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
983
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
12
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
492
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
4.71k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
6.19k
            }
1177
6.19k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
51.8k
        {
1157
51.8k
            switch (other.storage_kind())
1158
51.8k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
2.03k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
2.80k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
29.6k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
17.3k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
51.8k
            }
1177
51.8k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
78.1k
        {
1157
78.1k
            switch (other.storage_kind())
1158
78.1k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
4.02k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
12.5k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
33.3k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
28.3k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
78.1k
            }
1177
78.1k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
711k
        {
1157
711k
            switch (other.storage_kind())
1158
711k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
15.4k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
79.5k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
240k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
376k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
711k
            }
1177
711k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
22
        {
1157
22
            switch (other.storage_kind())
1158
22
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
0
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
22
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
0
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
0
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
22
            }
1177
22
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
8.02k
        {
1157
8.02k
            switch (other.storage_kind())
1158
8.02k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
1.90k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
1.75k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
1.86k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
2.49k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
8.02k
            }
1177
8.02k
        }
void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
29.7k
        {
1157
29.7k
            switch (other.storage_kind())
1158
29.7k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
12.1k
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
2.82k
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
4.85k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
9.90k
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
29.7k
            }
1177
29.7k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::null_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty_object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Line
Count
Source
1156
2.43k
        {
1157
2.43k
            switch (other.storage_kind())
1158
2.43k
            {
1159
0
                case json_storage_kind::null         : swap_l_r<TypeL, null_storage>(other); break;
1160
0
                case json_storage_kind::empty_object : swap_l_r<TypeL, empty_object_storage>(other); break;
1161
0
                case json_storage_kind::boolean         : swap_l_r<TypeL, bool_storage>(other); break;
1162
0
                case json_storage_kind::int64        : swap_l_r<TypeL, int64_storage>(other); break;
1163
0
                case json_storage_kind::uint64       : swap_l_r<TypeL, uint64_storage>(other); break;
1164
0
                case json_storage_kind::half_float         : swap_l_r<TypeL, half_storage>(other); break;
1165
0
                case json_storage_kind::float64       : swap_l_r<TypeL, double_storage>(other); break;
1166
0
                case json_storage_kind::short_str : swap_l_r<TypeL, short_string_storage>(other); break;
1167
0
                case json_storage_kind::long_str  : swap_l_r<TypeL, long_string_storage>(other); break;
1168
0
                case json_storage_kind::byte_str  : swap_l_r<TypeL, byte_string_storage>(other); break;
1169
2.43k
                case json_storage_kind::array        : swap_l_r<TypeL, array_storage>(other); break;
1170
0
                case json_storage_kind::object       : swap_l_r<TypeL, object_storage>(other); break;
1171
0
                case json_storage_kind::json_const_ref : swap_l_r<TypeL, const_ref_storage>(other); break;
1172
0
                case json_storage_kind::json_ref : swap_l_r<TypeL, ref_storage>(other); break;
1173
0
                default:
1174
0
                    JSONCONS_UNREACHABLE();
1175
0
                    break;
1176
2.43k
            }
1177
2.43k
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::bool_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::int64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uint64_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::half_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::double_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::short_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::long_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::byte_string_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::const_ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap_l<jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::ref_storage>(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
1178
1179
        void uninitialized_copy(const basic_json& other)
1180
        {
1181
            if (is_trivial_storage(other.storage_kind()))
1182
            {
1183
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1184
            }
1185
            else
1186
            {
1187
                switch (other.storage_kind())
1188
                {
1189
                    case json_storage_kind::long_str:
1190
                    {
1191
                        const auto& stor = other.cast<long_string_storage>();
1192
                        auto ptr = create_long_string(std::allocator_traits<Allocator>::select_on_container_copy_construction(stor.get_allocator()),
1193
                            stor.data(), stor.length());
1194
                        construct<long_string_storage>(ptr, other.tag());
1195
                        break;
1196
                    }
1197
                    case json_storage_kind::byte_str:
1198
                    {
1199
                        const auto& stor = other.cast<byte_string_storage>();
1200
                        auto ptr = create_byte_string(std::allocator_traits<Allocator>::select_on_container_copy_construction(stor.get_allocator()),
1201
                            stor.data(), stor.length(), stor.ext_tag());
1202
                        construct<byte_string_storage>(ptr, other.tag());
1203
                        break;
1204
                    }
1205
                    case json_storage_kind::array:
1206
                    {
1207
                        auto ptr = create_array(
1208
                            std::allocator_traits<Allocator>::select_on_container_copy_construction(other.cast<array_storage>().get_allocator()), 
1209
                            other.cast<array_storage>().value());
1210
                        construct<array_storage>(ptr, other.tag());
1211
                        break;
1212
                    }
1213
                    case json_storage_kind::object:
1214
                    {
1215
                        auto ptr = create_object(
1216
                            std::allocator_traits<Allocator>::select_on_container_copy_construction(other.cast<object_storage>().get_allocator()), 
1217
                            other.cast<object_storage>().value());
1218
                        construct<object_storage>(ptr, other.tag());
1219
                        break;
1220
                    }
1221
                    default:
1222
                        JSONCONS_UNREACHABLE();
1223
                        break;
1224
                }
1225
            }
1226
        }
1227
1228
        void uninitialized_copy_a(const basic_json& other, const Allocator& alloc)
1229
        {
1230
            if (is_trivial_storage(other.storage_kind()))
1231
            {
1232
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1233
            }
1234
            else
1235
            {
1236
                switch (other.storage_kind())
1237
                {
1238
                    case json_storage_kind::long_str:
1239
                    {
1240
                        const auto& storage = other.cast<long_string_storage>();
1241
                        auto ptr = create_long_string(alloc, storage.data(), storage.length());
1242
                        construct<long_string_storage>(ptr, other.tag());
1243
                        break;
1244
                    }
1245
                    case json_storage_kind::byte_str:
1246
                    {
1247
                        const auto& storage = other.cast<byte_string_storage>();
1248
                        auto ptr = create_byte_string(alloc, storage.data(), storage.length(), storage.ext_tag());
1249
                        construct<byte_string_storage>(ptr, other.tag());
1250
                        break;
1251
                    }
1252
                    case json_storage_kind::array:
1253
                    {
1254
                        auto ptr = create_array(alloc, other.cast<array_storage>().value());
1255
                        construct<array_storage>(ptr, other.tag());
1256
                        break;
1257
                    }
1258
                    case json_storage_kind::object:
1259
                    {
1260
                        auto ptr = create_object(alloc, other.cast<object_storage>().value());
1261
                        construct<object_storage>(ptr, other.tag());
1262
                        break;
1263
                    }
1264
                    default:
1265
                        JSONCONS_UNREACHABLE();
1266
                        break;
1267
                }
1268
            }
1269
        }
1270
1271
        void uninitialized_move(basic_json&& other) noexcept
1272
397M
        {
1273
397M
            if (is_trivial_storage(other.storage_kind()))
1274
319M
            {
1275
319M
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1276
319M
            }
1277
78.5M
            else
1278
78.5M
            {
1279
78.5M
                switch (other.storage_kind())
1280
78.5M
                {
1281
104k
                    case json_storage_kind::long_str:
1282
104k
                        construct<long_string_storage>(other.cast<long_string_storage>());
1283
104k
                        other.construct<null_storage>();
1284
104k
                        break;
1285
6.21M
                    case json_storage_kind::byte_str:
1286
6.21M
                        construct<byte_string_storage>(other.cast<byte_string_storage>());
1287
6.21M
                        other.construct<null_storage>();
1288
6.21M
                        break;
1289
31.3M
                    case json_storage_kind::array:
1290
31.3M
                        construct<array_storage>(other.cast<array_storage>());
1291
31.3M
                        other.construct<null_storage>();
1292
31.3M
                        break;
1293
40.7M
                    case json_storage_kind::object:
1294
40.7M
                        construct<object_storage>(other.cast<object_storage>());
1295
40.7M
                        other.construct<null_storage>();
1296
40.7M
                        break;
1297
0
                    default:
1298
0
                        JSONCONS_UNREACHABLE();
1299
0
                        break;
1300
78.5M
                }
1301
78.5M
            }
1302
397M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Line
Count
Source
1272
319M
        {
1273
319M
            if (is_trivial_storage(other.storage_kind()))
1274
252M
            {
1275
252M
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1276
252M
            }
1277
67.5M
            else
1278
67.5M
            {
1279
67.5M
                switch (other.storage_kind())
1280
67.5M
                {
1281
74.2k
                    case json_storage_kind::long_str:
1282
74.2k
                        construct<long_string_storage>(other.cast<long_string_storage>());
1283
74.2k
                        other.construct<null_storage>();
1284
74.2k
                        break;
1285
6.21M
                    case json_storage_kind::byte_str:
1286
6.21M
                        construct<byte_string_storage>(other.cast<byte_string_storage>());
1287
6.21M
                        other.construct<null_storage>();
1288
6.21M
                        break;
1289
20.4M
                    case json_storage_kind::array:
1290
20.4M
                        construct<array_storage>(other.cast<array_storage>());
1291
20.4M
                        other.construct<null_storage>();
1292
20.4M
                        break;
1293
40.7M
                    case json_storage_kind::object:
1294
40.7M
                        construct<object_storage>(other.cast<object_storage>());
1295
40.7M
                        other.construct<null_storage>();
1296
40.7M
                        break;
1297
0
                    default:
1298
0
                        JSONCONS_UNREACHABLE();
1299
0
                        break;
1300
67.5M
                }
1301
67.5M
            }
1302
319M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::uninitialized_move(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
Line
Count
Source
1272
78.0M
        {
1273
78.0M
            if (is_trivial_storage(other.storage_kind()))
1274
67.0M
            {
1275
67.0M
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1276
67.0M
            }
1277
10.9M
            else
1278
10.9M
            {
1279
10.9M
                switch (other.storage_kind())
1280
10.9M
                {
1281
30.6k
                    case json_storage_kind::long_str:
1282
30.6k
                        construct<long_string_storage>(other.cast<long_string_storage>());
1283
30.6k
                        other.construct<null_storage>();
1284
30.6k
                        break;
1285
0
                    case json_storage_kind::byte_str:
1286
0
                        construct<byte_string_storage>(other.cast<byte_string_storage>());
1287
0
                        other.construct<null_storage>();
1288
0
                        break;
1289
10.9M
                    case json_storage_kind::array:
1290
10.9M
                        construct<array_storage>(other.cast<array_storage>());
1291
10.9M
                        other.construct<null_storage>();
1292
10.9M
                        break;
1293
0
                    case json_storage_kind::object:
1294
0
                        construct<object_storage>(other.cast<object_storage>());
1295
0
                        other.construct<null_storage>();
1296
0
                        break;
1297
0
                    default:
1298
0
                        JSONCONS_UNREACHABLE();
1299
0
                        break;
1300
10.9M
                }
1301
10.9M
            }
1302
78.0M
        }
1303
1304
        void uninitialized_move_a(std::true_type /* stateless allocator */, 
1305
            basic_json&& other, const Allocator&) noexcept
1306
        {
1307
            uninitialized_move(std::move(other));
1308
        }
1309
1310
        void uninitialized_move_a(std::false_type /* stateful allocator */, 
1311
            basic_json&& other, const Allocator& alloc) noexcept
1312
        {
1313
            if (is_trivial_storage(other.storage_kind()))
1314
            {
1315
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1316
            }
1317
            else
1318
            {
1319
                uninitialized_copy_a(other, alloc);
1320
            }
1321
        }
1322
1323
        void copy_assignment(const basic_json& other)
1324
        {
1325
            if (is_trivial_storage(other.storage_kind()))
1326
            {
1327
                destroy();
1328
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1329
            }
1330
            else if (storage_kind() == other.storage_kind())
1331
            {
1332
                switch (other.storage_kind())
1333
                {
1334
                    case json_storage_kind::long_str:
1335
                    {
1336
                        auto alloc = cast<long_string_storage>().get_allocator();
1337
                        destroy();
1338
                        uninitialized_copy_a(other, alloc);
1339
                        break;
1340
                    }
1341
                    case json_storage_kind::byte_str:
1342
                    {
1343
                        auto alloc = cast<byte_string_storage>().get_allocator();
1344
                        destroy();
1345
                        uninitialized_copy_a(other, alloc);
1346
                        break;
1347
                    }
1348
                    case json_storage_kind::array:
1349
                        cast<array_storage>().assign(other.cast<array_storage>());
1350
                        break;
1351
                    case json_storage_kind::object:
1352
                        cast<object_storage>().assign(other.cast<object_storage>());
1353
                        break;
1354
                    default:
1355
                        JSONCONS_UNREACHABLE();
1356
                        break;
1357
                }
1358
            }
1359
            else if (is_trivial_storage(storage_kind())) // rhs is not trivial storage
1360
            {
1361
                destroy();
1362
                uninitialized_copy(other);
1363
            }
1364
            else // lhs and rhs are not trivial storage
1365
            {
1366
                auto alloc = get_allocator();
1367
                destroy();
1368
                uninitialized_copy_a(other, alloc);
1369
            }
1370
        }
1371
1372
        void move_assignment(basic_json&& other) noexcept
1373
108M
        {
1374
108M
            if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind()))
1375
98.6M
            {
1376
98.6M
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1377
98.6M
            }
1378
9.70M
            else
1379
9.70M
            {
1380
9.70M
                swap(other);
1381
9.70M
            }
1382
108M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Line
Count
Source
1373
108M
        {
1374
108M
            if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind()))
1375
98.6M
            {
1376
98.6M
                std::memcpy(static_cast<void*>(this), &other, sizeof(basic_json));
1377
98.6M
            }
1378
9.70M
            else
1379
9.70M
            {
1380
9.70M
                swap(other);
1381
9.70M
            }
1382
108M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::move_assignment(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
1383
1384
        basic_json& evaluate_with_default() 
1385
        {
1386
            return *this;
1387
        }
1388
1389
        basic_json& evaluate(const string_view_type& name) 
1390
        {
1391
            return at(name);
1392
        }
1393
1394
        const basic_json& evaluate(const string_view_type& name) const
1395
        {
1396
            return at(name);
1397
        }
1398
1399
    public:
1400
1401
        basic_json& evaluate() 
1402
        {
1403
            return *this;
1404
        }
1405
1406
        const basic_json& evaluate() const
1407
        {
1408
            return *this;
1409
        }
1410
1411
        basic_json& operator=(const basic_json& other)
1412
        {
1413
            if (this != &other)
1414
            {
1415
                copy_assignment(other);
1416
            }
1417
            return *this;
1418
        }
1419
1420
        basic_json& operator=(basic_json&& other) noexcept
1421
108M
        {
1422
108M
            if (this != &other)
1423
108M
            {
1424
108M
                move_assignment(std::move(other));
1425
108M
            }
1426
108M
            return *this;
1427
108M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Line
Count
Source
1421
108M
        {
1422
108M
            if (this != &other)
1423
108M
            {
1424
108M
                move_assignment(std::move(other));
1425
108M
            }
1426
108M
            return *this;
1427
108M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::operator=(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
1428
1429
        json_storage_kind storage_kind() const
1430
1.43G
        {
1431
            // It is legal to access 'common_.storage_kind_' even though 
1432
            // common_ is not the active member of the union because 'storage_kind_' 
1433
            // is a part of the common initial sequence of all union members
1434
            // as defined in 11.4-25 of the Standard.
1435
1.43G
            return static_cast<json_storage_kind>(common_.storage_kind_);
1436
1.43G
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::storage_kind() const
Line
Count
Source
1430
1.15G
        {
1431
            // It is legal to access 'common_.storage_kind_' even though 
1432
            // common_ is not the active member of the union because 'storage_kind_' 
1433
            // is a part of the common initial sequence of all union members
1434
            // as defined in 11.4-25 of the Standard.
1435
1.15G
            return static_cast<json_storage_kind>(common_.storage_kind_);
1436
1.15G
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::storage_kind() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::storage_kind() const
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::storage_kind() const
Line
Count
Source
1430
283M
        {
1431
            // It is legal to access 'common_.storage_kind_' even though 
1432
            // common_ is not the active member of the union because 'storage_kind_' 
1433
            // is a part of the common initial sequence of all union members
1434
            // as defined in 11.4-25 of the Standard.
1435
283M
            return static_cast<json_storage_kind>(common_.storage_kind_);
1436
283M
        }
1437
1438
        json_type type() const
1439
        {
1440
            switch(storage_kind())
1441
            {
1442
                case json_storage_kind::null:
1443
                    return json_type::null;
1444
                case json_storage_kind::boolean:
1445
                    return json_type::boolean;
1446
                case json_storage_kind::int64:
1447
                    return json_type::int64;
1448
                case json_storage_kind::uint64:
1449
                    return json_type::uint64;
1450
                case json_storage_kind::half_float:
1451
                    return json_type::float16;
1452
                case json_storage_kind::float64:
1453
                    return json_type::float64;
1454
                case json_storage_kind::short_str:
1455
                case json_storage_kind::long_str:
1456
                    return json_type::string;
1457
                case json_storage_kind::byte_str:
1458
                    return json_type::byte_string;
1459
                case json_storage_kind::array:
1460
                    return json_type::array;
1461
                case json_storage_kind::empty_object:
1462
                case json_storage_kind::object:
1463
                    return json_type::object;
1464
                case json_storage_kind::json_const_ref:
1465
                    return cast<const_ref_storage>().value().type();
1466
                case json_storage_kind::json_ref:
1467
                    return cast<ref_storage>().value().type();
1468
                default:
1469
                    JSONCONS_UNREACHABLE();
1470
                    break;
1471
            }
1472
        }
1473
1474
        semantic_tag tag() const
1475
0
        {
1476
            // It is legal to access 'common_.tag_' even though 
1477
            // common_ is not the active member of the union because 'tag_' 
1478
            // is a part of the common initial sequence of all union members
1479
            // as defined in 11.4-25 of the Standard.
1480
0
            switch(storage_kind())
1481
0
            {
1482
0
                case json_storage_kind::json_const_ref:
1483
0
                    return cast<const_ref_storage>().value().tag();
1484
0
                case json_storage_kind::json_ref:
1485
0
                    return cast<ref_storage>().value().tag();
1486
0
                default:
1487
0
                    return common_.tag_;
1488
0
            }
1489
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::tag() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::tag() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::tag() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::tag() const
1490
1491
        std::size_t size() const
1492
        {
1493
            switch (storage_kind())
1494
            {
1495
                case json_storage_kind::array:
1496
                    return cast<array_storage>().value().size();
1497
                case json_storage_kind::empty_object:
1498
                    return 0;
1499
                case json_storage_kind::object:
1500
                    return cast<object_storage>().value().size();
1501
                case json_storage_kind::json_const_ref:
1502
                    return cast<const_ref_storage>().value().size();
1503
                case json_storage_kind::json_ref:
1504
                    return cast<ref_storage>().value().size();
1505
                default:
1506
                    return 0;
1507
            }
1508
        }
1509
1510
        string_view_type as_string_view() const
1511
        {
1512
           auto result = try_as_string_view();
1513
           if (!result)
1514
           {
1515
               JSONCONS_THROW(conv_error(result.error().code()));
1516
           }
1517
           return *result;
1518
        }
1519
1520
        conversion_result<string_view_type> try_as_string_view() const
1521
        {
1522
            using result_type = conversion_result<string_view_type>;
1523
1524
            switch (storage_kind())
1525
            {
1526
                case json_storage_kind::short_str:
1527
                    return result_type(in_place, cast<short_string_storage>().data(),cast<short_string_storage>().length());
1528
                case json_storage_kind::long_str:
1529
                    return result_type(in_place, cast<long_string_storage>().data(),cast<long_string_storage>().length());
1530
                case json_storage_kind::json_const_ref:
1531
                    return result_type(cast<const_ref_storage>().value().as_string_view());
1532
                case json_storage_kind::json_ref:
1533
                    return result_type(cast<ref_storage>().value().as_string_view());
1534
                default:
1535
                   return result_type(jsoncons::unexpect, conv_errc::not_string);
1536
            }
1537
        }
1538
1539
        template <typename T,typename Alloc, typename TempAlloc>
1540
        typename std::enable_if<ext_traits::is_basic_byte_string<T>::value,conversion_result<T>>::type
1541
        try_as_byte_string(const allocator_set<Alloc,TempAlloc>& aset) const
1542
        {
1543
            using value_type = T;
1544
            using result_type = conversion_result<value_type>;
1545
1546
            switch (storage_kind())
1547
            {
1548
                case json_storage_kind::short_str:
1549
                {
1550
                    value_type bytes = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator());
1551
                    const auto& stor = cast<short_string_storage>();
1552
                    auto res = string_to_bytes(stor.data(), stor.data()+stor.length(), tag(), bytes);
1553
                    if (JSONCONS_UNLIKELY(res.ec != conv_errc{}))
1554
                    {
1555
                        return result_type(jsoncons::unexpect, conv_errc::not_byte_string);
1556
                    }
1557
                    return result_type(std::move(bytes));
1558
                }
1559
                case json_storage_kind::long_str:
1560
                {
1561
                    value_type bytes = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator());
1562
                    const auto& stor = cast<long_string_storage>();
1563
                    auto res = string_to_bytes(stor.data(), stor.data()+stor.length(), tag(), bytes);
1564
                    if (JSONCONS_UNLIKELY(res.ec != conv_errc{}))
1565
                    {
1566
                        return result_type(jsoncons::unexpect, conv_errc::not_byte_string);
1567
                    }
1568
                    return result_type(std::move(bytes));
1569
                }
1570
                case json_storage_kind::byte_str:
1571
                {
1572
                    auto& bs = cast<byte_string_storage>();
1573
                    auto val = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), 
1574
                        bs.data(), bs.length());
1575
                    return result_type(std::move(val));
1576
                }
1577
                case json_storage_kind::json_const_ref:
1578
                    return cast<const_ref_storage>().value().template try_as_byte_string<T>(aset);
1579
                case json_storage_kind::json_ref:
1580
                    return cast<ref_storage>().value().template try_as_byte_string<T>(aset);
1581
                default:
1582
                    return result_type(jsoncons::unexpect, conv_errc::not_byte_string);
1583
            }
1584
        }
1585
1586
        template <typename BytesAlloc=std::allocator<uint8_t>>
1587
        basic_byte_string<BytesAlloc> as_byte_string() const
1588
        {
1589
            auto result = try_as_byte_string<basic_byte_string<BytesAlloc>>(make_alloc_set(BytesAlloc()));
1590
            if (!result)
1591
            {
1592
                JSONCONS_THROW(conv_error(result.error().code()));
1593
            }
1594
            return *result;
1595
        }
1596
1597
        conversion_result<byte_string_view> try_as_byte_string_view() const
1598
        {
1599
            using result_type = conversion_result<byte_string_view>;
1600
1601
            switch (storage_kind())
1602
            {
1603
                case json_storage_kind::byte_str:
1604
                    return result_type(in_place, cast<byte_string_storage>().data(),cast<byte_string_storage>().length());
1605
                case json_storage_kind::json_const_ref:
1606
                    return cast<const_ref_storage>().value().try_as_byte_string_view();
1607
                case json_storage_kind::json_ref:
1608
                    return cast<ref_storage>().value().try_as_byte_string_view();
1609
                default:
1610
                    return result_type(jsoncons::unexpect, conv_errc::not_byte_string);
1611
            }
1612
        }
1613
1614
        byte_string_view as_byte_string_view() const
1615
        {
1616
            auto result = try_as_byte_string_view();
1617
            if (!result)
1618
            {
1619
                JSONCONS_THROW(conv_error(result.error().code()));
1620
            }
1621
            return *result;
1622
        }
1623
1624
        int compare(const basic_json& rhs) const noexcept
1625
        {
1626
            if (this == &rhs)
1627
            {
1628
                return 0;
1629
            }
1630
            switch (storage_kind())
1631
            {
1632
                case json_storage_kind::json_const_ref:
1633
                    switch (rhs.storage_kind())
1634
                    {
1635
                        case json_storage_kind::json_const_ref:
1636
                            return cast<const_ref_storage>().value().compare(rhs.cast<const_ref_storage>().value());
1637
                        default:
1638
                            return cast<const_ref_storage>().value().compare(rhs);
1639
                    }
1640
                    break;
1641
                case json_storage_kind::json_ref:
1642
                    switch (rhs.storage_kind())
1643
                    {
1644
                        case json_storage_kind::json_ref:
1645
                            return cast<ref_storage>().value().compare(rhs.cast<ref_storage>().value());
1646
                        default:
1647
                            return cast<ref_storage>().value().compare(rhs);
1648
                    }
1649
                    break;
1650
                case json_storage_kind::null:
1651
                    return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1652
                case json_storage_kind::empty_object:
1653
                    switch (rhs.storage_kind())
1654
                    {
1655
                        case json_storage_kind::empty_object:
1656
                            return 0;
1657
                        case json_storage_kind::object:
1658
                            return rhs.empty() ? 0 : -1;
1659
                        case json_storage_kind::json_const_ref:
1660
                            return compare(rhs.cast<const_ref_storage>().value());
1661
                        case json_storage_kind::json_ref:
1662
                            return compare(rhs.cast<ref_storage>().value());
1663
                        default:
1664
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1665
                    }
1666
                    break;
1667
                case json_storage_kind::boolean:
1668
                    switch (rhs.storage_kind())
1669
                    {
1670
                        case json_storage_kind::boolean:
1671
                            return static_cast<int>(cast<bool_storage>().value()) - static_cast<int>(rhs.cast<bool_storage>().value());
1672
                        case json_storage_kind::json_const_ref:
1673
                            return compare(rhs.cast<const_ref_storage>().value());
1674
                        case json_storage_kind::json_ref:
1675
                            return compare(rhs.cast<ref_storage>().value());
1676
                        default:
1677
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1678
                    }
1679
                    break;
1680
                case json_storage_kind::int64:
1681
                    switch (rhs.storage_kind())
1682
                    {
1683
                        case json_storage_kind::int64:
1684
                        {
1685
                            if (cast<int64_storage>().value() == rhs.cast<int64_storage>().value())
1686
                                return 0;
1687
                            return cast<int64_storage>().value() < rhs.cast<int64_storage>().value() ? -1 : 1;
1688
                        }
1689
                        case json_storage_kind::uint64:
1690
                            if (cast<int64_storage>().value() < 0) 
1691
                                return -1;
1692
                            else if (static_cast<uint64_t>(cast<int64_storage>().value()) == rhs.cast<uint64_storage>().value()) 
1693
                                return 0;
1694
                            else
1695
                                return static_cast<uint64_t>(cast<int64_storage>().value()) < rhs.cast<uint64_storage>().value() ? -1 : 1;
1696
                        case json_storage_kind::float64:
1697
                        {
1698
                            double r = static_cast<double>(cast<int64_storage>().value()) - rhs.cast<double_storage>().value();
1699
                            return r == 0.0 ? 0 : (r < 0.0 ? -1 : 1);
1700
                        }
1701
                        case json_storage_kind::json_const_ref:
1702
                            return compare(rhs.cast<const_ref_storage>().value());
1703
                        case json_storage_kind::json_ref:
1704
                            return compare(rhs.cast<ref_storage>().value());
1705
                        default:
1706
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1707
                    }
1708
                    break;
1709
                case json_storage_kind::uint64:
1710
                    switch (rhs.storage_kind())
1711
                    {
1712
                        case json_storage_kind::int64:
1713
                            if (rhs.cast<int64_storage>().value() < 0) 
1714
                                return 1;
1715
                            else if (cast<uint64_storage>().value() == static_cast<uint64_t>(rhs.cast<int64_storage>().value()))
1716
                                return 0;
1717
                            else
1718
                                return cast<uint64_storage>().value() < static_cast<uint64_t>(rhs.cast<int64_storage>().value()) ? -1 : 1;
1719
                        case json_storage_kind::uint64:
1720
                            if (cast<uint64_storage>().value() == static_cast<uint64_t>(rhs.cast<int64_storage>().value()))
1721
                                return 0;
1722
                            else
1723
                                return cast<uint64_storage>().value() < static_cast<uint64_t>(rhs.cast<int64_storage>().value()) ? -1 : 1;
1724
                        case json_storage_kind::float64:
1725
                        {
1726
                            auto r = static_cast<double>(cast<uint64_storage>().value()) - rhs.cast<double_storage>().value();
1727
                            return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1728
                        }
1729
                        case json_storage_kind::json_const_ref:
1730
                            return compare(rhs.cast<const_ref_storage>().value());
1731
                        case json_storage_kind::json_ref:
1732
                            return compare(rhs.cast<ref_storage>().value());
1733
                        default:
1734
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1735
                    }
1736
                    break;
1737
                case json_storage_kind::float64:
1738
                    switch (rhs.storage_kind())
1739
                    {
1740
                        case json_storage_kind::int64:
1741
                        {
1742
                            auto r = cast<double_storage>().value() - static_cast<double>(rhs.cast<int64_storage>().value());
1743
                            return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1744
                        }
1745
                        case json_storage_kind::uint64:
1746
                        {
1747
                            auto r = cast<double_storage>().value() - static_cast<double>(rhs.cast<uint64_storage>().value());
1748
                            return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1749
                        }
1750
                        case json_storage_kind::float64:
1751
                        {
1752
                            auto r = cast<double_storage>().value() - rhs.cast<double_storage>().value();
1753
                            return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1754
                        }
1755
                        case json_storage_kind::json_const_ref:
1756
                            return compare(rhs.cast<const_ref_storage>().value());
1757
                        case json_storage_kind::json_ref:
1758
                            return compare(rhs.cast<ref_storage>().value());
1759
                        default:
1760
                            if (is_string_storage(rhs.storage_kind()) && is_number_tag(rhs.tag()))
1761
                            {
1762
                                double val1 = as_double();
1763
                                double val2 = rhs.as_double();
1764
                                if (val1 < 0 && val2 >= 0)
1765
                                {
1766
                                    return -1;
1767
                                }
1768
                                if (val2 < 0 && val1 >= 0)
1769
                                {
1770
                                    return 1;
1771
                                }
1772
1773
                                return val1 == val2 ? 0 : (val1 < val2 ? -1 : 1);
1774
                            }
1775
                            else
1776
                            {
1777
                                return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1778
                            }
1779
                    }
1780
                    break;
1781
                case json_storage_kind::short_str:
1782
                case json_storage_kind::long_str:
1783
                    if (is_number_tag(tag()))
1784
                    {
1785
                        double val1 = as_double(); 
1786
                        switch (rhs.storage_kind())
1787
                        {
1788
                            case json_storage_kind::int64:
1789
                            {
1790
                                auto r = val1 - static_cast<double>(rhs.cast<int64_storage>().value());
1791
                                return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1792
                            }
1793
                            case json_storage_kind::uint64:
1794
                            {
1795
                                auto r = val1 - static_cast<double>(rhs.cast<uint64_storage>().value());
1796
                                return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1797
                            }
1798
                            case json_storage_kind::float64:
1799
                            {
1800
                                auto r = val1 - rhs.cast<double_storage>().value();
1801
                                return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1802
                            }
1803
                            case json_storage_kind::json_const_ref:
1804
                                return compare(rhs.cast<const_ref_storage>().value());
1805
                            case json_storage_kind::json_ref:
1806
                                return compare(rhs.cast<ref_storage>().value());
1807
                            default:
1808
                                if (is_string_storage(rhs.storage_kind()) && is_number_tag(rhs.tag()))
1809
                                {
1810
                                    double val2 = rhs.as_double();
1811
                                    if (val1 == val2)
1812
                                    {
1813
                                        return 0;
1814
                                    }
1815
                                    auto r = val1 - val2; 
1816
                                    return r == 0 ? 0 : (r < 0.0 ? -1 : 1);
1817
                                }
1818
                                else
1819
                                {
1820
                                    return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1821
                                }
1822
                        }
1823
                    }
1824
                    else
1825
                    {
1826
                        // compare regular text
1827
                        switch (rhs.storage_kind())
1828
                        {
1829
                            case json_storage_kind::short_str:
1830
                                return as_string_view().compare(rhs.as_string_view());
1831
                            case json_storage_kind::long_str:
1832
                                return as_string_view().compare(rhs.as_string_view());
1833
                            case json_storage_kind::json_const_ref:
1834
                                return compare(rhs.cast<const_ref_storage>().value());
1835
                            case json_storage_kind::json_ref:
1836
                                return compare(rhs.cast<ref_storage>().value());
1837
                            default:
1838
                                return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1839
                        }
1840
                    }
1841
                    break;
1842
                case json_storage_kind::byte_str:
1843
                    switch (rhs.storage_kind())
1844
                    {
1845
                        case json_storage_kind::byte_str:
1846
                        {
1847
                            return as_byte_string_view().compare(rhs.as_byte_string_view());
1848
                        }
1849
                        case json_storage_kind::json_const_ref:
1850
                            return compare(rhs.cast<const_ref_storage>().value());
1851
                        case json_storage_kind::json_ref:
1852
                            return compare(rhs.cast<ref_storage>().value());
1853
                        default:
1854
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1855
                    }
1856
                    break;
1857
                case json_storage_kind::array:
1858
                    switch (rhs.storage_kind())
1859
                    {
1860
                        case json_storage_kind::array:
1861
                        {
1862
                            if (cast<array_storage>().value() == rhs.cast<array_storage>().value())
1863
                                return 0; 
1864
                            else 
1865
                                return cast<array_storage>().value() < rhs.cast<array_storage>().value() ? -1 : 1;
1866
                        }
1867
                        case json_storage_kind::json_const_ref:
1868
                            return compare(rhs.cast<const_ref_storage>().value());
1869
                        case json_storage_kind::json_ref:
1870
                            return compare(rhs.cast<ref_storage>().value());
1871
                        default:
1872
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1873
                    }
1874
                    break;
1875
                case json_storage_kind::object:
1876
                    switch (rhs.storage_kind())
1877
                    {
1878
                        case json_storage_kind::empty_object:
1879
                            return empty() ? 0 : 1;
1880
                        case json_storage_kind::object:
1881
                        {
1882
                            if (cast<object_storage>().value() == rhs.cast<object_storage>().value())
1883
                                return 0; 
1884
                            else 
1885
                                return cast<object_storage>().value() < rhs.cast<object_storage>().value() ? -1 : 1;
1886
                        }
1887
                        case json_storage_kind::json_const_ref:
1888
                            return compare(rhs.cast<const_ref_storage>().value());
1889
                        case json_storage_kind::json_ref:
1890
                            return compare(rhs.cast<ref_storage>().value());
1891
                        default:
1892
                            return static_cast<int>(storage_kind()) - static_cast<int>(rhs.storage_kind());
1893
                    }
1894
                    break;
1895
                default:
1896
                    JSONCONS_UNREACHABLE();
1897
                    break;
1898
            }
1899
        }
1900
1901
        void swap(basic_json& other) noexcept
1902
9.71M
        {
1903
9.71M
            if (this == &other)
1904
0
            {
1905
0
                return;
1906
0
            }
1907
9.71M
            if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind()))
1908
0
            {
1909
0
                basic_json temp;               
1910
0
                std::memcpy(static_cast<void*>(&temp), static_cast<void*>(&other), sizeof(basic_json));
1911
0
                std::memcpy(static_cast<void*>(&other), static_cast<void*>(this), sizeof(basic_json));
1912
0
                std::memcpy(static_cast<void*>(this), static_cast<void*>(&temp), sizeof(basic_json));
1913
0
            }
1914
9.71M
            else
1915
9.71M
            {
1916
9.71M
                switch (storage_kind())
1917
9.71M
                {
1918
8.82M
                    case json_storage_kind::null: swap_l<null_storage>(other); break;
1919
8.63k
                    case json_storage_kind::empty_object : swap_l<empty_object_storage>(other); break;
1920
51.8k
                    case json_storage_kind::boolean: swap_l<bool_storage>(other); break;
1921
78.1k
                    case json_storage_kind::int64: swap_l<int64_storage>(other); break;
1922
711k
                    case json_storage_kind::uint64: swap_l<uint64_storage>(other); break;
1923
22
                    case json_storage_kind::half_float: swap_l<half_storage>(other); break;
1924
8.02k
                    case json_storage_kind::float64: swap_l<double_storage>(other); break;
1925
29.7k
                    case json_storage_kind::short_str: swap_l<short_string_storage>(other); break;
1926
0
                    case json_storage_kind::long_str: swap_l<long_string_storage>(other); break;
1927
0
                    case json_storage_kind::byte_str: swap_l<byte_string_storage>(other); break;
1928
0
                    case json_storage_kind::array: swap_l<array_storage>(other); break;
1929
0
                    case json_storage_kind::object: swap_l<object_storage>(other); break;
1930
0
                    case json_storage_kind::json_const_ref: swap_l<const_ref_storage>(other); break;
1931
0
                    case json_storage_kind::json_ref: swap_l<ref_storage>(other); break;
1932
0
                    default:
1933
0
                        JSONCONS_UNREACHABLE();
1934
0
                        break;
1935
9.71M
                }
1936
9.71M
            }
1937
9.71M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Line
Count
Source
1902
9.71M
        {
1903
9.71M
            if (this == &other)
1904
0
            {
1905
0
                return;
1906
0
            }
1907
9.71M
            if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind()))
1908
0
            {
1909
0
                basic_json temp;               
1910
0
                std::memcpy(static_cast<void*>(&temp), static_cast<void*>(&other), sizeof(basic_json));
1911
0
                std::memcpy(static_cast<void*>(&other), static_cast<void*>(this), sizeof(basic_json));
1912
0
                std::memcpy(static_cast<void*>(this), static_cast<void*>(&temp), sizeof(basic_json));
1913
0
            }
1914
9.71M
            else
1915
9.71M
            {
1916
9.71M
                switch (storage_kind())
1917
9.71M
                {
1918
8.82M
                    case json_storage_kind::null: swap_l<null_storage>(other); break;
1919
6.19k
                    case json_storage_kind::empty_object : swap_l<empty_object_storage>(other); break;
1920
51.8k
                    case json_storage_kind::boolean: swap_l<bool_storage>(other); break;
1921
78.1k
                    case json_storage_kind::int64: swap_l<int64_storage>(other); break;
1922
711k
                    case json_storage_kind::uint64: swap_l<uint64_storage>(other); break;
1923
22
                    case json_storage_kind::half_float: swap_l<half_storage>(other); break;
1924
8.02k
                    case json_storage_kind::float64: swap_l<double_storage>(other); break;
1925
29.7k
                    case json_storage_kind::short_str: swap_l<short_string_storage>(other); break;
1926
0
                    case json_storage_kind::long_str: swap_l<long_string_storage>(other); break;
1927
0
                    case json_storage_kind::byte_str: swap_l<byte_string_storage>(other); break;
1928
0
                    case json_storage_kind::array: swap_l<array_storage>(other); break;
1929
0
                    case json_storage_kind::object: swap_l<object_storage>(other); break;
1930
0
                    case json_storage_kind::json_const_ref: swap_l<const_ref_storage>(other); break;
1931
0
                    case json_storage_kind::json_ref: swap_l<ref_storage>(other); break;
1932
0
                    default:
1933
0
                        JSONCONS_UNREACHABLE();
1934
0
                        break;
1935
9.71M
                }
1936
9.71M
            }
1937
9.71M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::swap(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&)
Line
Count
Source
1902
2.43k
        {
1903
2.43k
            if (this == &other)
1904
0
            {
1905
0
                return;
1906
0
            }
1907
2.43k
            if (is_trivial_storage(storage_kind()) && is_trivial_storage(other.storage_kind()))
1908
0
            {
1909
0
                basic_json temp;               
1910
0
                std::memcpy(static_cast<void*>(&temp), static_cast<void*>(&other), sizeof(basic_json));
1911
0
                std::memcpy(static_cast<void*>(&other), static_cast<void*>(this), sizeof(basic_json));
1912
0
                std::memcpy(static_cast<void*>(this), static_cast<void*>(&temp), sizeof(basic_json));
1913
0
            }
1914
2.43k
            else
1915
2.43k
            {
1916
2.43k
                switch (storage_kind())
1917
2.43k
                {
1918
0
                    case json_storage_kind::null: swap_l<null_storage>(other); break;
1919
2.43k
                    case json_storage_kind::empty_object : swap_l<empty_object_storage>(other); break;
1920
0
                    case json_storage_kind::boolean: swap_l<bool_storage>(other); break;
1921
0
                    case json_storage_kind::int64: swap_l<int64_storage>(other); break;
1922
0
                    case json_storage_kind::uint64: swap_l<uint64_storage>(other); break;
1923
0
                    case json_storage_kind::half_float: swap_l<half_storage>(other); break;
1924
0
                    case json_storage_kind::float64: swap_l<double_storage>(other); break;
1925
0
                    case json_storage_kind::short_str: swap_l<short_string_storage>(other); break;
1926
0
                    case json_storage_kind::long_str: swap_l<long_string_storage>(other); break;
1927
0
                    case json_storage_kind::byte_str: swap_l<byte_string_storage>(other); break;
1928
0
                    case json_storage_kind::array: swap_l<array_storage>(other); break;
1929
0
                    case json_storage_kind::object: swap_l<object_storage>(other); break;
1930
0
                    case json_storage_kind::json_const_ref: swap_l<const_ref_storage>(other); break;
1931
0
                    case json_storage_kind::json_ref: swap_l<ref_storage>(other); break;
1932
0
                    default:
1933
0
                        JSONCONS_UNREACHABLE();
1934
0
                        break;
1935
2.43k
                }
1936
2.43k
            }
1937
2.43k
        }
1938
        // from string
1939
1940
        template <typename Source>
1941
        static
1942
        typename std::enable_if<ext_traits::is_string_view_of<Source,char_type>::value,basic_json>::type
1943
        parse(const Source& source, 
1944
              const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
1945
5.30k
        {
1946
5.30k
            json_decoder<basic_json> decoder;
1947
5.30k
            basic_json_parser<char_type> parser(options);
1948
1949
5.30k
            auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size());
1950
5.30k
            if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected))
1951
11
            {
1952
11
                JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column()));
1953
11
            }
1954
5.29k
            std::size_t offset = (r.ptr - source.data());
1955
5.29k
            parser.update(source.data()+offset,source.size()-offset);
1956
5.29k
            parser.parse_some(decoder);
1957
5.29k
            parser.finish_parse(decoder);
1958
5.29k
            parser.check_done();
1959
5.29k
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
1960
0
            {
1961
0
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string"));
1962
0
            }
1963
5.29k
            return decoder.get_result();
1964
5.29k
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEE5parseINS2_12basic_stringIcNS2_11char_traitsIcEES4_EEEENS2_9enable_ifIXsr10ext_traits17is_string_view_ofIT_cEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIcEE
Line
Count
Source
1945
5.30k
        {
1946
5.30k
            json_decoder<basic_json> decoder;
1947
5.30k
            basic_json_parser<char_type> parser(options);
1948
1949
5.30k
            auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size());
1950
5.30k
            if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected))
1951
11
            {
1952
11
                JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column()));
1953
11
            }
1954
5.29k
            std::size_t offset = (r.ptr - source.data());
1955
5.29k
            parser.update(source.data()+offset,source.size()-offset);
1956
5.29k
            parser.parse_some(decoder);
1957
5.29k
            parser.finish_parse(decoder);
1958
5.29k
            parser.check_done();
1959
5.29k
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
1960
0
            {
1961
0
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string"));
1962
0
            }
1963
5.29k
            return decoder.get_result();
1964
5.29k
        }
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIcNS2_11char_traitsIcEEEEEENS2_9enable_ifIXsr10ext_traits17is_string_view_ofIT_cEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIcEE
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIwNS_13sorted_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIwNS2_11char_traitsIwEEEEEENS2_9enable_ifIXsr10ext_traits17is_string_view_ofIT_wEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIwEE
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIcNS2_11char_traitsIcEEEEEENS2_9enable_ifIXsr10ext_traits17is_string_view_ofIT_cEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIcEE
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIwNS_23order_preserving_policyENSt3__19allocatorIcEEE5parseINS2_17basic_string_viewIwNS2_11char_traitsIwEEEEEENS2_9enable_ifIXsr10ext_traits17is_string_view_ofIT_wEE5valueES5_E4typeERKSC_RKNS_25basic_json_decode_optionsIwEE
1965
1966
        template <typename Source,typename TempAlloc >
1967
        static
1968
        typename std::enable_if<ext_traits::is_string_view_of<Source,char_type>::value,basic_json>::type
1969
            parse(const allocator_set<allocator_type,TempAlloc>& aset, const Source& source, 
1970
              const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
1971
        {
1972
            json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator());
1973
            basic_json_parser<char_type,TempAlloc> parser(options, aset.get_temp_allocator());
1974
1975
            auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size());
1976
            if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected))
1977
            {
1978
                JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column()));
1979
            }
1980
            std::size_t offset = (r.ptr - source.data());
1981
            parser.update(source.data()+offset,source.size()-offset);
1982
            parser.parse_some(decoder);
1983
            parser.finish_parse(decoder);
1984
            parser.check_done();
1985
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
1986
            {
1987
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string"));
1988
            }
1989
            return decoder.get_result();
1990
        }
1991
1992
        static basic_json parse(const char_type* str, std::size_t length, 
1993
            const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
1994
        {
1995
            return parse(jsoncons::string_view(str,length), options);
1996
        }
1997
1998
        static basic_json parse(const char_type* source, 
1999
            const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
2000
        {
2001
            return parse(jsoncons::basic_string_view<char_type>(source), options);
2002
        }
2003
2004
        template <typename TempAlloc >
2005
        static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, const char_type* source, 
2006
            const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
2007
        {
2008
            return parse(aset, jsoncons::basic_string_view<char_type>(source), options);
2009
        }
2010
2011
        template <typename TempAlloc >
2012
        static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, 
2013
            const char_type* str, std::size_t length,
2014
            const basic_json_decode_options<char_type>& options = basic_json_options<char_type>())
2015
        {
2016
            return parse(aset, jsoncons::basic_string_view<char_type>(str, length), options);
2017
        }
2018
2019
        // from stream
2020
2021
        static basic_json parse(std::basic_istream<char_type>& is, 
2022
            const basic_json_decode_options<char_type>& options = basic_json_options<CharT>())
2023
        {
2024
            json_decoder<basic_json> decoder;
2025
            basic_json_reader<char_type,stream_source<char_type>,Allocator> reader(is, decoder, options);
2026
            reader.read_next();
2027
            reader.check_done();
2028
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2029
            {
2030
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream"));
2031
            }
2032
            return decoder.get_result();
2033
        }
2034
2035
        template <typename TempAlloc >
2036
        static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, std::basic_istream<char_type>& is, 
2037
            const basic_json_decode_options<char_type>& options = basic_json_options<CharT>())
2038
        {
2039
            json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator());
2040
            basic_json_reader<char_type,stream_source<char_type>,Allocator> reader(is, decoder, options, aset.get_temp_allocator());
2041
            reader.read_next();
2042
            reader.check_done();
2043
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2044
            {
2045
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream"));
2046
            }
2047
            return decoder.get_result();
2048
        }
2049
2050
        // from iterator
2051
2052
        template <typename InputIt>
2053
        static basic_json parse(InputIt first, InputIt last, 
2054
                                const basic_json_decode_options<char_type>& options = basic_json_options<CharT>())
2055
        {
2056
            json_decoder<basic_json> decoder;
2057
            basic_json_reader<char_type,iterator_source<InputIt>,Allocator> reader(iterator_source<InputIt>(std::forward<InputIt>(first),
2058
                std::forward<InputIt>(last)), decoder, options);
2059
            reader.read_next();
2060
            reader.check_done();
2061
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2062
            {
2063
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair"));
2064
            }
2065
            return decoder.get_result();
2066
        }
2067
2068
        template <typename InputIt,typename TempAlloc >
2069
        static basic_json parse(const allocator_set<allocator_type,TempAlloc>& aset, InputIt first, InputIt last, 
2070
                                const basic_json_decode_options<char_type>& options = basic_json_options<CharT>())
2071
        {
2072
            json_decoder<basic_json> decoder(aset.get_allocator(), aset.get_temp_allocator());
2073
            basic_json_reader<char_type,iterator_source<InputIt>,Allocator> reader(iterator_source<InputIt>(std::forward<InputIt>(first),
2074
                std::forward<InputIt>(last)), 
2075
                decoder, options, aset.get_temp_allocator());
2076
            reader.read_next();
2077
            reader.check_done();
2078
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2079
            {
2080
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair"));
2081
            }
2082
            return decoder.get_result();
2083
        }
2084
2085
#if !defined(JSONCONS_NO_DEPRECATED)
2086
2087
        static basic_json parse(const char_type* s, 
2088
            const basic_json_decode_options<char_type>& options, 
2089
            std::function<bool(json_errc,const ser_context&)> err_handler)
2090
        {
2091
            return parse(jsoncons::basic_string_view<char_type>(s), options, err_handler);
2092
        }
2093
2094
        static basic_json parse(const char_type* s, 
2095
                                std::function<bool(json_errc,const ser_context&)> err_handler)
2096
        {
2097
            return parse(jsoncons::basic_string_view<char_type>(s), basic_json_decode_options<char_type>(), err_handler);
2098
        }
2099
2100
        static basic_json parse(std::basic_istream<char_type>& is, 
2101
            const basic_json_decode_options<char_type>& options, 
2102
            std::function<bool(json_errc,const ser_context&)> err_handler)
2103
        {
2104
            json_decoder<basic_json> decoder;
2105
            basic_json_reader<char_type,stream_source<char_type>> reader(is, decoder, options, err_handler);
2106
            reader.read_next();
2107
            reader.check_done();
2108
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2109
            {
2110
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json stream"));
2111
            }
2112
            return decoder.get_result();
2113
        }
2114
2115
        static basic_json parse(std::basic_istream<char_type>& is, std::function<bool(json_errc,const ser_context&)> err_handler)
2116
        {
2117
            return parse(is, basic_json_decode_options<CharT>(), err_handler);
2118
        }
2119
2120
        template <typename InputIt>
2121
        static basic_json parse(InputIt first, InputIt last, 
2122
                                const basic_json_decode_options<char_type>& options, 
2123
                                std::function<bool(json_errc,const ser_context&)> err_handler)
2124
        {
2125
            json_decoder<basic_json> decoder;
2126
            basic_json_reader<char_type,iterator_source<InputIt>> reader(iterator_source<InputIt>(std::forward<InputIt>(first),std::forward<InputIt>(last)), decoder, options, err_handler);
2127
            reader.read_next();
2128
            reader.check_done();
2129
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2130
            {
2131
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json from iterator pair"));
2132
            }
2133
            return decoder.get_result();
2134
        }
2135
2136
        template <typename Source>
2137
        static
2138
        typename std::enable_if<ext_traits::is_string_view_of<Source,char_type>::value,basic_json>::type
2139
        parse(const Source& source, 
2140
              const basic_json_decode_options<char_type>& options, 
2141
              std::function<bool(json_errc,const ser_context&)> err_handler)
2142
        {
2143
            json_decoder<basic_json> decoder;
2144
            basic_json_parser<char_type> parser(options,err_handler);
2145
2146
            auto r = unicode_traits::detect_encoding_from_bom(source.data(), source.size());
2147
            if (!(r.encoding == unicode_traits::encoding_kind::utf8 || r.encoding == unicode_traits::encoding_kind::undetected))
2148
            {
2149
                JSONCONS_THROW(ser_error(json_errc::illegal_unicode_character,parser.line(),parser.column()));
2150
            }
2151
            std::size_t offset = (r.ptr - source.data());
2152
            parser.update(source.data()+offset,source.size()-offset);
2153
            parser.parse_some(decoder);
2154
            parser.finish_parse(decoder);
2155
            parser.check_done();
2156
            if (JSONCONS_UNLIKELY(!decoder.is_valid()))
2157
            {
2158
                JSONCONS_THROW(ser_error(json_errc::source_error, "Failed to parse json string"));
2159
            }
2160
            return decoder.get_result();
2161
        }
2162
2163
        template <typename Source>
2164
        static
2165
        typename std::enable_if<ext_traits::is_string_view_of<Source,char_type>::value,basic_json>::type
2166
        parse(const Source& source, 
2167
            std::function<bool(json_errc,const ser_context&)> err_handler)
2168
        {
2169
            return parse(source, basic_json_decode_options<CharT>(), err_handler);
2170
        }
2171
2172
        template <typename InputIt>
2173
        static basic_json parse(InputIt first, InputIt last, 
2174
                                std::function<bool(json_errc,const ser_context&)> err_handler)
2175
        {
2176
            return parse(first, last, basic_json_decode_options<CharT>(), err_handler);
2177
        }
2178
#endif
2179
        static basic_json make_array()
2180
        {
2181
            return basic_json(array());
2182
        }
2183
2184
        static basic_json make_array(const array& a)
2185
        {
2186
            return basic_json(a);
2187
        }
2188
2189
        static basic_json make_array(const array& a, allocator_type alloc)
2190
        {
2191
            return basic_json(a, semantic_tag::none, alloc);
2192
        }
2193
2194
        static basic_json make_array(std::initializer_list<basic_json> init, const Allocator& alloc = Allocator())
2195
        {
2196
            return array(std::move(init),alloc);
2197
        }
2198
2199
        static basic_json make_array(std::size_t n, const Allocator& alloc = Allocator())
2200
        {
2201
            return array(n,alloc);
2202
        }
2203
2204
        template <typename T>
2205
        static basic_json make_array(std::size_t n, const T& val, const Allocator& alloc = Allocator())
2206
        {
2207
            return basic_json::array(n, val,alloc);
2208
        }
2209
2210
        template <std::size_t dim>
2211
        static typename std::enable_if<dim==1,basic_json>::type make_array(std::size_t n)
2212
        {
2213
            return array(n);
2214
        }
2215
2216
        template <std::size_t dim,typename T>
2217
        static typename std::enable_if<dim==1,basic_json>::type make_array(std::size_t n, const T& val, const Allocator& alloc = Allocator())
2218
        {
2219
            return array(n,val,alloc);
2220
        }
2221
2222
        template <std::size_t dim,typename... Args>
2223
        static typename std::enable_if<(dim>1),basic_json>::type make_array(std::size_t n, Args... args)
2224
        {
2225
            const size_t dim1 = dim - 1;
2226
2227
            basic_json val = make_array<dim1>(std::forward<Args>(args)...);
2228
            val.resize(n);
2229
            for (std::size_t i = 0; i < n; ++i)
2230
            {
2231
                val[i] = make_array<dim1>(std::forward<Args>(args)...);
2232
            }
2233
            return val;
2234
        }
2235
2236
        static const basic_json& null()
2237
        {
2238
            static const basic_json a_null = basic_json(null_arg, semantic_tag::none);
2239
            return a_null;
2240
        }
2241
2242
        basic_json() 
2243
19.5k
        {
2244
19.5k
            construct<empty_object_storage>(semantic_tag::none);
2245
19.5k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json()
Line
Count
Source
2243
16.9k
        {
2244
16.9k
            construct<empty_object_storage>(semantic_tag::none);
2245
16.9k
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json()
Line
Count
Source
2243
2.62k
        {
2244
2.62k
            construct<empty_object_storage>(semantic_tag::none);
2245
2.62k
        }
2246
2247
        explicit basic_json(const Allocator& alloc) 
2248
        {
2249
            auto ptr = create_object(alloc);
2250
            construct<object_storage>(ptr, semantic_tag::none);
2251
        }
2252
2253
        basic_json(semantic_tag tag, const Allocator& alloc) 
2254
        {
2255
            auto ptr = create_object(alloc);
2256
            construct<object_storage>(ptr, tag);
2257
        }
2258
2259
        basic_json(semantic_tag tag) 
2260
        {
2261
            construct<empty_object_storage>(tag);
2262
        }
2263
2264
        basic_json(const basic_json& other)
2265
        {
2266
            uninitialized_copy(other);
2267
        }
2268
2269
        basic_json(const basic_json& other, const Allocator& alloc)
2270
        {
2271
            uninitialized_copy_a(other,alloc);
2272
        }
2273
2274
        basic_json(basic_json&& other) noexcept
2275
397M
        {
2276
397M
            uninitialized_move(std::move(other));
2277
397M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Line
Count
Source
2275
319M
        {
2276
319M
            uninitialized_move(std::move(other));
2277
319M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
Line
Count
Source
2275
78.0M
        {
2276
78.0M
            uninitialized_move(std::move(other));
2277
78.0M
        }
2278
2279
        template <typename U = Allocator>
2280
        basic_json(basic_json&& other, const Allocator& alloc) noexcept
2281
        {
2282
            uninitialized_move_a(typename std::allocator_traits<U>::is_always_equal(), std::move(other), alloc);
2283
        }
2284
2285
        explicit basic_json(json_object_arg_t, 
2286
                            semantic_tag tag,
2287
                            const Allocator& alloc = Allocator()) 
2288
16.1M
        {
2289
16.1M
            auto ptr = create_object(alloc);
2290
16.1M
            construct<object_storage>(ptr, tag);
2291
16.1M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(jsoncons::json_object_arg_t, jsoncons::semantic_tag, std::__1::allocator<char> const&)
Line
Count
Source
2288
16.1M
        {
2289
16.1M
            auto ptr = create_object(alloc);
2290
16.1M
            construct<object_storage>(ptr, tag);
2291
16.1M
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(jsoncons::json_object_arg_t, jsoncons::semantic_tag, std::__1::allocator<char> const&)
2292
2293
        explicit basic_json(json_object_arg_t) 
2294
        {
2295
            auto ptr = create_object(Allocator{});
2296
            construct<object_storage>(ptr, semantic_tag::none);
2297
        }
2298
2299
        basic_json(json_object_arg_t, const Allocator& alloc) 
2300
        {
2301
            auto ptr = create_object(alloc);
2302
            construct<object_storage>(ptr, semantic_tag::none);
2303
        }
2304
2305
        template <typename InputIt>
2306
        basic_json(json_object_arg_t, 
2307
                   InputIt first, InputIt last, 
2308
                   semantic_tag tag = semantic_tag::none) 
2309
        {
2310
            auto ptr = create_object(Allocator(), first, last);
2311
            construct<object_storage>(ptr, tag);
2312
        }
2313
2314
        template <typename InputIt>
2315
        basic_json(json_object_arg_t, 
2316
                   InputIt first, InputIt last, 
2317
                   semantic_tag tag,
2318
                   const Allocator& alloc) 
2319
        {
2320
            auto ptr = create_object(alloc, first, last);
2321
            construct<object_storage>(ptr, tag);
2322
        }
2323
2324
        basic_json(json_object_arg_t, 
2325
                   std::initializer_list<std::pair<std::basic_string<char_type>,basic_json>> init, 
2326
                   semantic_tag tag = semantic_tag::none) 
2327
        {
2328
            auto ptr = create_object(Allocator(), init);
2329
            construct<object_storage>(ptr, tag);
2330
        }
2331
2332
        basic_json(json_object_arg_t, 
2333
                   std::initializer_list<std::pair<std::basic_string<char_type>,basic_json>> init, 
2334
                   semantic_tag tag, 
2335
                   const Allocator& alloc) 
2336
        {
2337
            auto ptr = create_object(alloc, init);
2338
            construct<object_storage>(ptr, tag);
2339
        }
2340
2341
        explicit basic_json(json_array_arg_t) 
2342
        {
2343
            auto ptr = create_array(Allocator{});
2344
            construct<array_storage>(ptr, semantic_tag::none);
2345
        }
2346
2347
        basic_json(json_array_arg_t, const Allocator& alloc) 
2348
        {
2349
            auto ptr = create_array(alloc);
2350
            construct<array_storage>(ptr, semantic_tag::none);
2351
        }
2352
2353
        basic_json(json_array_arg_t, std::size_t count, const basic_json& value,
2354
            semantic_tag tag = semantic_tag::none) 
2355
        {
2356
            auto ptr = create_array(Allocator(), count, value);
2357
            construct<array_storage>(ptr, tag);
2358
        }
2359
2360
        basic_json(json_array_arg_t, std::size_t count, const basic_json& value,
2361
            semantic_tag tag, const Allocator& alloc) 
2362
        {
2363
            auto ptr = create_array(alloc, count, value);
2364
            construct<array_storage>(ptr, tag);
2365
        }
2366
2367
        basic_json(json_array_arg_t, 
2368
            semantic_tag tag) 
2369
13.7M
        {
2370
13.7M
            auto ptr = create_array(Allocator());
2371
13.7M
            construct<array_storage>(ptr, tag);
2372
13.7M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(jsoncons::json_array_arg_t, jsoncons::semantic_tag)
Line
Count
Source
2369
10.5M
        {
2370
10.5M
            auto ptr = create_array(Allocator());
2371
10.5M
            construct<array_storage>(ptr, tag);
2372
10.5M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(jsoncons::json_array_arg_t, jsoncons::semantic_tag)
Line
Count
Source
2369
3.20M
        {
2370
3.20M
            auto ptr = create_array(Allocator());
2371
3.20M
            construct<array_storage>(ptr, tag);
2372
3.20M
        }
2373
2374
        basic_json(json_array_arg_t, 
2375
            semantic_tag tag, 
2376
            const Allocator& alloc) 
2377
        {
2378
            auto ptr = create_array(alloc);
2379
            construct<array_storage>(ptr, tag);
2380
        }
2381
2382
        template <typename InputIt>
2383
        basic_json(json_array_arg_t, 
2384
                   InputIt first, InputIt last, 
2385
                   semantic_tag tag = semantic_tag::none) 
2386
        {
2387
            auto ptr = create_array(Allocator(), first, last);
2388
            construct<array_storage>(ptr, tag);
2389
        }
2390
2391
        template <typename InputIt>
2392
        basic_json(json_array_arg_t, 
2393
                   InputIt first, InputIt last, 
2394
                   semantic_tag tag, 
2395
                   const Allocator& alloc) 
2396
        {
2397
            auto ptr = create_array(alloc, first, last);
2398
            construct<array_storage>(ptr, tag);
2399
        }
2400
2401
        basic_json(json_array_arg_t, 
2402
                   std::initializer_list<basic_json> init, 
2403
                   semantic_tag tag = semantic_tag::none) 
2404
        {
2405
            auto ptr = create_array(Allocator(), init);
2406
            construct<array_storage>(ptr, tag);
2407
        }
2408
2409
        basic_json(json_array_arg_t, 
2410
                   std::initializer_list<basic_json> init, 
2411
                   semantic_tag tag, 
2412
                   const Allocator& alloc) 
2413
        {
2414
            auto ptr = create_array(alloc, init);
2415
            construct<array_storage>(ptr, tag);
2416
        }
2417
2418
        basic_json(json_const_pointer_arg_t, const basic_json* ptr) noexcept 
2419
        {
2420
            if (ptr == nullptr)
2421
            {
2422
                construct<null_storage>(semantic_tag::none);
2423
            }
2424
            else
2425
            {
2426
                construct<const_ref_storage>(*ptr);
2427
            }
2428
        }
2429
2430
        basic_json(json_pointer_arg_t, basic_json* ptr) noexcept 
2431
        {
2432
            if (ptr == nullptr)
2433
            {
2434
                construct<null_storage>(semantic_tag::none);
2435
            }
2436
            else
2437
            {
2438
                construct<ref_storage>(*ptr);
2439
            }
2440
        }
2441
2442
        basic_json(const array& val, semantic_tag tag = semantic_tag::none)
2443
        {
2444
            auto ptr = create_array(
2445
                std::allocator_traits<Allocator>::select_on_container_copy_construction(val.get_allocator()), 
2446
                val);
2447
            construct<array_storage>(ptr, tag);
2448
        }
2449
2450
        basic_json(const array& val, semantic_tag tag, allocator_type alloc)
2451
        {
2452
            auto ptr = create_array(alloc, val);
2453
            construct<array_storage>(ptr, tag);
2454
        }
2455
2456
        basic_json(array&& val, semantic_tag tag = semantic_tag::none)
2457
        {
2458
            auto alloc = val.get_allocator();
2459
            auto ptr = create_array(alloc, std::move(val));
2460
            construct<array_storage>(ptr, tag);
2461
        }
2462
2463
        basic_json(const object& val, semantic_tag tag = semantic_tag::none)
2464
        {
2465
            auto ptr = create_object(
2466
                std::allocator_traits<Allocator>::select_on_container_copy_construction(val.get_allocator()), 
2467
                val);
2468
            construct<object_storage>(ptr, tag);
2469
        }
2470
2471
        basic_json(const object& val, semantic_tag tag, allocator_type alloc)
2472
        {
2473
            auto ptr = create_object(alloc, val);
2474
            construct<object_storage>(ptr, tag);
2475
        }
2476
2477
        basic_json(object&& val, semantic_tag tag = semantic_tag::none)
2478
        {
2479
            auto alloc = val.get_allocator();
2480
            auto ptr = create_object(alloc, std::move(val));
2481
            construct<object_storage>(ptr, tag);
2482
        }
2483
2484
        template <typename T>
2485
        basic_json(const T& val)
2486
            : basic_json(reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(), val))
2487
        {
2488
        }
2489
2490
        template <typename T>
2491
        basic_json(const T& val, const Allocator& alloc)
2492
            : basic_json(reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(alloc), val))
2493
        {
2494
        }
2495
2496
        template <typename SAlloc>
2497
        basic_json(const std::basic_string<char_type,std::char_traits<char_type>,SAlloc>& s, 
2498
            semantic_tag tag = semantic_tag::none)
2499
            : basic_json(s.data(), s.size(), tag, Allocator())
2500
        {
2501
        }
2502
2503
        template <typename SAlloc>
2504
        basic_json(const std::basic_string<char_type, std::char_traits<char_type>, SAlloc>& s, 
2505
            const allocator_type& alloc)
2506
            : basic_json(s.data(), s.size(), semantic_tag::none, alloc)
2507
        {
2508
        }
2509
2510
        template <typename SAlloc>
2511
        basic_json(const std::basic_string<char_type, std::char_traits<char_type>, SAlloc>& s, 
2512
            semantic_tag tag, const allocator_type& alloc)
2513
            : basic_json(s.data(), s.size(), tag, alloc)
2514
        {
2515
        }
2516
2517
        basic_json(const string_view_type& s, semantic_tag tag = semantic_tag::none)
2518
29.5M
            : basic_json(s.data(), s.size(), tag, allocator_type())
2519
29.5M
        {
2520
29.5M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(std::__1::basic_string_view<char, std::__1::char_traits<char> > const&, jsoncons::semantic_tag)
Line
Count
Source
2518
5.18M
            : basic_json(s.data(), s.size(), tag, allocator_type())
2519
5.18M
        {
2520
5.18M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(std::__1::basic_string_view<char, std::__1::char_traits<char> > const&, jsoncons::semantic_tag)
Line
Count
Source
2518
24.4M
            : basic_json(s.data(), s.size(), tag, allocator_type())
2519
24.4M
        {
2520
24.4M
        }
2521
2522
        basic_json(const string_view_type& s, const allocator_type& alloc)
2523
            : basic_json(s.data(), s.size(), semantic_tag::none, alloc)
2524
        {
2525
        }
2526
2527
        basic_json(const char_type* s, semantic_tag tag = semantic_tag::none)
2528
            : basic_json(s, char_traits_type::length(s), tag)
2529
        {
2530
        }
2531
2532
        basic_json(const char_type* s, semantic_tag tag, const allocator_type& alloc)
2533
            : basic_json(s, char_traits_type::length(s), tag, alloc)
2534
        {
2535
        }
2536
2537
        basic_json(const char_type* s, const Allocator& alloc)
2538
            : basic_json(s, char_traits_type::length(s), semantic_tag::none, alloc)
2539
        {
2540
        }
2541
2542
        basic_json(const char_type* s, std::size_t length, semantic_tag tag = semantic_tag::none)
2543
            : basic_json(s, length, tag, Allocator())
2544
        {
2545
        }
2546
2547
        basic_json(const char_type* s, std::size_t length, semantic_tag tag, const Allocator& alloc)
2548
29.5M
        {
2549
29.5M
            if (length <= short_string_storage::max_length)
2550
29.5M
            {
2551
29.5M
                construct<short_string_storage>(s, static_cast<uint8_t>(length), tag);
2552
29.5M
            }
2553
63.6k
            else
2554
63.6k
            {
2555
63.6k
                auto ptr = create_long_string(alloc, s, length);
2556
63.6k
                construct<long_string_storage>(ptr, tag);
2557
63.6k
            }
2558
29.5M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(char const*, unsigned long, jsoncons::semantic_tag, std::__1::allocator<char> const&)
Line
Count
Source
2548
5.18M
        {
2549
5.18M
            if (length <= short_string_storage::max_length)
2550
5.14M
            {
2551
5.14M
                construct<short_string_storage>(s, static_cast<uint8_t>(length), tag);
2552
5.14M
            }
2553
34.8k
            else
2554
34.8k
            {
2555
34.8k
                auto ptr = create_long_string(alloc, s, length);
2556
34.8k
                construct<long_string_storage>(ptr, tag);
2557
34.8k
            }
2558
5.18M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(char const*, unsigned long, jsoncons::semantic_tag, std::__1::allocator<char> const&)
Line
Count
Source
2548
24.4M
        {
2549
24.4M
            if (length <= short_string_storage::max_length)
2550
24.3M
            {
2551
24.3M
                construct<short_string_storage>(s, static_cast<uint8_t>(length), tag);
2552
24.3M
            }
2553
28.8k
            else
2554
28.8k
            {
2555
28.8k
                auto ptr = create_long_string(alloc, s, length);
2556
28.8k
                construct<long_string_storage>(ptr, tag);
2557
28.8k
            }
2558
24.4M
        }
2559
2560
        basic_json(half_arg_t, uint16_t val, semantic_tag tag = semantic_tag::none)
2561
230
        {
2562
230
            construct<half_storage>(val, tag);
2563
230
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(jsoncons::half_arg_t, unsigned short, jsoncons::semantic_tag)
Line
Count
Source
2561
230
        {
2562
230
            construct<half_storage>(val, tag);
2563
230
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(jsoncons::half_arg_t, unsigned short, jsoncons::semantic_tag)
2564
2565
        basic_json(half_arg_t, uint16_t val, semantic_tag tag, const allocator_type&)
2566
        {
2567
            construct<half_storage>(val, tag);
2568
        }
2569
2570
        basic_json(double val, semantic_tag tag)
2571
1.56M
        {
2572
1.56M
            construct<double_storage>(val, tag);
2573
1.56M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(double, jsoncons::semantic_tag)
Line
Count
Source
2571
1.51M
        {
2572
1.51M
            construct<double_storage>(val, tag);
2573
1.51M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(double, jsoncons::semantic_tag)
Line
Count
Source
2571
45.1k
        {
2572
45.1k
            construct<double_storage>(val, tag);
2573
45.1k
        }
2574
2575
        basic_json(double val, semantic_tag tag, const allocator_type&)
2576
        {
2577
            construct<double_storage>(val, tag);
2578
        }
2579
2580
        template <typename IntegerType>
2581
        basic_json(IntegerType val, semantic_tag tag, 
2582
                   typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(uint64_t), int>::type = 0)
2583
38.4M
        {
2584
38.4M
            construct<uint64_storage>(val, tag);
2585
38.4M
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2ImEET_NS_12semantic_tagENS2_9enable_ifIXaasr10ext_traits19is_unsigned_integerIS7_EE5valuelestS7_Lm8EEiE4typeE
Line
Count
Source
2583
38.2M
        {
2584
38.2M
            construct<uint64_storage>(val, tag);
2585
38.2M
        }
_ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2ImEET_NS_12semantic_tagENS2_9enable_ifIXaasr10ext_traits19is_unsigned_integerIS7_EE5valuelestS7_Lm8EEiE4typeE
Line
Count
Source
2583
120k
        {
2584
120k
            construct<uint64_storage>(val, tag);
2585
120k
        }
2586
2587
        template <typename IntegerType>
2588
        basic_json(IntegerType val, semantic_tag tag, Allocator, 
2589
                   typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(uint64_t), int>::type = 0)
2590
        {
2591
            construct<uint64_storage>(val, tag);
2592
        }
2593
2594
        template <typename IntegerType>
2595
        basic_json(IntegerType val, semantic_tag, const Allocator& alloc = Allocator(),
2596
                   typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(uint64_t) < sizeof(IntegerType), int>::type = 0)
2597
        {
2598
            std::basic_string<CharT> s;
2599
            jsoncons::from_integer(val, s);
2600
            if (s.length() <= short_string_storage::max_length)
2601
            {
2602
                construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint);
2603
            }
2604
            else
2605
            {
2606
                auto ptr = create_long_string(alloc, s.data(), s.length());
2607
                construct<long_string_storage>(ptr, semantic_tag::bigint);
2608
            }
2609
        }
2610
2611
        template <typename IntegerType>
2612
        basic_json(IntegerType val, semantic_tag tag,
2613
                   typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),int>::type = 0)
2614
11.1M
        {
2615
11.1M
            construct<int64_storage>(val, tag);
2616
11.1M
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2IlEET_NS_12semantic_tagENS2_9enable_ifIXaasr10ext_traits17is_signed_integerIS7_EE5valuelestS7_Lm8EEiE4typeE
Line
Count
Source
2614
10.7M
        {
2615
10.7M
            construct<int64_storage>(val, tag);
2616
10.7M
        }
_ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2IlEET_NS_12semantic_tagENS2_9enable_ifIXaasr10ext_traits17is_signed_integerIS7_EE5valuelestS7_Lm8EEiE4typeE
Line
Count
Source
2614
373k
        {
2615
373k
            construct<int64_storage>(val, tag);
2616
373k
        }
2617
2618
        template <typename IntegerType>
2619
        basic_json(IntegerType val, semantic_tag tag, Allocator,
2620
                   typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),int>::type = 0)
2621
        {
2622
            construct<int64_storage>(val, tag);
2623
        }
2624
2625
        template <typename IntegerType>
2626
        basic_json(IntegerType val, semantic_tag,
2627
                   typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),int>::type = 0)
2628
        {
2629
            std::basic_string<CharT> s;
2630
            jsoncons::from_integer(val, s);
2631
            if (s.length() <= short_string_storage::max_length)
2632
            {
2633
                construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint);
2634
            }
2635
            else
2636
            {
2637
                auto ptr = create_long_string(Allocator(), s.data(), s.length());
2638
                construct<long_string_storage>(ptr, semantic_tag::bigint);
2639
            }
2640
        }
2641
2642
        template <typename IntegerType>
2643
        basic_json(IntegerType val, semantic_tag, const Allocator& alloc,
2644
                   typename std::enable_if<ext_traits::is_signed_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),int>::type = 0)
2645
        {
2646
            std::basic_string<CharT> s;
2647
            jsoncons::from_integer(val, s);
2648
            if (s.length() <= short_string_storage::max_length)
2649
            {
2650
                construct<short_string_storage>(s.data(), static_cast<uint8_t>(s.length()), semantic_tag::bigint);
2651
            }
2652
            else
2653
            {
2654
                auto ptr = create_long_string(alloc, s.data(), s.length());
2655
                construct<long_string_storage>(ptr, semantic_tag::bigint);
2656
            }
2657
        }
2658
2659
        basic_json(null_type, semantic_tag tag)
2660
36.4M
        {
2661
36.4M
            construct<null_storage>(tag);
2662
36.4M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(jsoncons::null_type, jsoncons::semantic_tag)
Line
Count
Source
2660
36.4M
        {
2661
36.4M
            construct<null_storage>(tag);
2662
36.4M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(jsoncons::null_type, jsoncons::semantic_tag)
Line
Count
Source
2660
48.8k
        {
2661
48.8k
            construct<null_storage>(tag);
2662
48.8k
        }
2663
2664
        basic_json(null_type, semantic_tag tag, const Allocator&)
2665
        {
2666
            construct<null_storage>(tag);
2667
        }
2668
2669
        basic_json(bool val, semantic_tag tag)
2670
7.88M
        {
2671
7.88M
            construct<bool_storage>(val,tag);
2672
7.88M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(bool, jsoncons::semantic_tag)
Line
Count
Source
2670
7.80M
        {
2671
7.80M
            construct<bool_storage>(val,tag);
2672
7.80M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(bool, jsoncons::semantic_tag)
Line
Count
Source
2670
86.9k
        {
2671
86.9k
            construct<bool_storage>(val,tag);
2672
86.9k
        }
2673
2674
        basic_json(bool val, semantic_tag tag, const Allocator&)
2675
        {
2676
            construct<bool_storage>(val,tag);
2677
        }
2678
2679
        basic_json(const string_view_type& sv, semantic_tag tag, const allocator_type& alloc)
2680
1.13k
            : basic_json(sv.data(), sv.length(), tag, alloc)
2681
1.13k
        {
2682
1.13k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::basic_json(std::__1::basic_string_view<char, std::__1::char_traits<char> > const&, jsoncons::semantic_tag, std::__1::allocator<char> const&)
Line
Count
Source
2680
1.13k
            : basic_json(sv.data(), sv.length(), tag, alloc)
2681
1.13k
        {
2682
1.13k
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::basic_json(std::__1::basic_string_view<char, std::__1::char_traits<char> > const&, jsoncons::semantic_tag, std::__1::allocator<char> const&)
2683
2684
        template <typename BytesViewLike>
2685
        basic_json(byte_string_arg_t, const BytesViewLike& source, 
2686
                   semantic_tag tag = semantic_tag::none,
2687
                   typename std::enable_if<ext_traits::is_bytes_view_like<BytesViewLike>::value,int>::type = 0)
2688
3.16M
        {
2689
3.16M
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2690
            
2691
3.16M
            auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), 0);
2692
3.16M
            construct<byte_string_storage>(ptr, tag);
2693
3.16M
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_NS_12semantic_tagENS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
Line
Count
Source
2688
3.16M
        {
2689
3.16M
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2690
            
2691
3.16M
            auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), 0);
2692
3.16M
            construct<byte_string_storage>(ptr, tag);
2693
3.16M
        }
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_NS_12semantic_tagENS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
2694
2695
        template <typename BytesViewLike>
2696
        basic_json(byte_string_arg_t, const BytesViewLike& source, 
2697
                   semantic_tag tag,
2698
                   const Allocator& alloc,
2699
                   typename std::enable_if<ext_traits::is_bytes_view_like<BytesViewLike>::value,int>::type = 0)
2700
7
        {
2701
7
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2702
2703
7
            auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), 0);
2704
7
            construct<byte_string_storage>(ptr, tag);
2705
7
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_NS_12semantic_tagERKS4_NS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
Line
Count
Source
2700
7
        {
2701
7
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2702
2703
7
            auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), 0);
2704
7
            construct<byte_string_storage>(ptr, tag);
2705
7
        }
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_NS_12semantic_tagERKS4_NS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
2706
2707
        template <typename BytesViewLike>
2708
        basic_json(byte_string_arg_t, const BytesViewLike& source, 
2709
                   uint64_t ext_tag,
2710
                   typename std::enable_if<ext_traits::is_bytes_view_like<BytesViewLike>::value,int>::type = 0)
2711
82.0k
        {
2712
82.0k
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2713
2714
82.0k
            auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), ext_tag);
2715
82.0k
            construct<byte_string_storage>(ptr, semantic_tag::ext);
2716
82.0k
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_mNS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
Line
Count
Source
2711
82.0k
        {
2712
82.0k
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2713
2714
82.0k
            auto ptr = create_byte_string(Allocator(), bytes.data(), bytes.size(), ext_tag);
2715
82.0k
            construct<byte_string_storage>(ptr, semantic_tag::ext);
2716
82.0k
        }
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_mNS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
2717
2718
        template <typename BytesViewLike>
2719
        basic_json(byte_string_arg_t, const BytesViewLike& source, 
2720
                   uint64_t ext_tag,
2721
                   const Allocator& alloc,
2722
                   typename std::enable_if<ext_traits::is_bytes_view_like<BytesViewLike>::value,int>::type = 0)
2723
5
        {
2724
5
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2725
2726
5
            auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), ext_tag);
2727
5
            construct<byte_string_storage>(ptr, semantic_tag::ext);
2728
5
        }
_ZN8jsoncons10basic_jsonIcNS_13sorted_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_mRKS4_NS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
Line
Count
Source
2723
5
        {
2724
5
            auto bytes = jsoncons::span<const uint8_t>(reinterpret_cast<const uint8_t*>(source.data()), source.size());
2725
2726
5
            auto ptr = create_byte_string(alloc, bytes.data(), bytes.size(), ext_tag);
2727
5
            construct<byte_string_storage>(ptr, semantic_tag::ext);
2728
5
        }
Unexecuted instantiation: _ZN8jsoncons10basic_jsonIcNS_23order_preserving_policyENSt3__19allocatorIcEEEC2INS_16byte_string_viewEEENS_17byte_string_arg_tERKT_mRKS4_NS2_9enable_ifIXsr10ext_traits18is_bytes_view_likeIS9_EE5valueEiE4typeE
2729
2730
        template <typename InputIterator>
2731
        basic_json(InputIterator first, InputIterator last)
2732
            : basic_json(json_array_arg,first,last,Allocator())
2733
        {
2734
        }
2735
2736
        template <typename InputIterator>
2737
        basic_json(InputIterator first, InputIterator last, const Allocator& alloc)
2738
            : basic_json(json_array_arg,first,last,alloc)
2739
        {
2740
        }
2741
2742
        ~basic_json() noexcept
2743
555M
        {
2744
555M
             destroy();
2745
555M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::~basic_json()
Line
Count
Source
2743
449M
        {
2744
449M
             destroy();
2745
449M
        }
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::~basic_json()
Line
Count
Source
2743
106M
        {
2744
106M
             destroy();
2745
106M
        }
2746
2747
        template <typename T>
2748
        basic_json& operator=(const T& val)
2749
        {
2750
            *this = reflect::json_conv_traits<basic_json,T>::to_json(make_alloc_set(), val);
2751
            return *this;
2752
        }
2753
2754
        basic_json& operator=(const char_type* s)
2755
        {
2756
            *this = basic_json(s, char_traits_type::length(s), semantic_tag::none);
2757
            return *this;
2758
        }
2759
2760
        basic_json& operator[](std::size_t i)
2761
        {
2762
            return at(i);
2763
        }
2764
2765
        const basic_json& operator[](std::size_t i) const
2766
        {
2767
            return at(i);
2768
        }
2769
2770
        basic_json& operator[](const string_view_type& key)
2771
        {
2772
            switch (storage_kind())
2773
            {
2774
                case json_storage_kind::empty_object: 
2775
                    return try_emplace(key, basic_json{}).first->value();
2776
                case json_storage_kind::object:
2777
                {           
2778
                    auto it = cast<object_storage>().value().find(key);
2779
                    if (it == cast<object_storage>().value().end())
2780
                    {
2781
                        return try_emplace(key, basic_json{}).first->value();
2782
                    }
2783
                    else
2784
                    {
2785
                        return (*it).value();
2786
                    }
2787
                    break;
2788
                }
2789
                case json_storage_kind::json_ref: 
2790
                    return cast<ref_storage>().value()[key];
2791
                default:
2792
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
2793
            }               
2794
        }
2795
2796
        const basic_json& operator[](const string_view_type& key) const
2797
        {
2798
            static const basic_json an_empty_object = basic_json();
2799
2800
            switch (storage_kind())
2801
            {
2802
                case json_storage_kind::empty_object: 
2803
                    return an_empty_object;
2804
                case json_storage_kind::object:
2805
                {           
2806
                    auto it = cast<object_storage>().value().find(key);
2807
                    if (it == cast<object_storage>().value().end())
2808
                    {
2809
                        return an_empty_object;
2810
                    }
2811
                    else
2812
                    {
2813
                        return (*it).value();
2814
                    }
2815
                    break;
2816
                }
2817
                case json_storage_kind::json_const_ref: 
2818
                    return cast<const_ref_storage>().value().at(key);
2819
                case json_storage_kind::json_ref: 
2820
                    return cast<ref_storage>().value()[key];
2821
                default:
2822
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
2823
            }
2824
        }
2825
2826
        template <typename CharContainer>
2827
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2828
        dump(CharContainer& cont,
2829
             const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const
2830
        {
2831
            std::error_code ec;
2832
            dump(cont, options, indenting::no_indent, ec);
2833
            if (JSONCONS_UNLIKELY(ec))
2834
            {
2835
                JSONCONS_THROW(ser_error(ec));
2836
            }
2837
        }
2838
2839
        template <typename CharContainer>
2840
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2841
        dump(CharContainer& cont,
2842
             const basic_json_encode_options<char_type>& options,
2843
             indenting indent) const
2844
        {
2845
            std::error_code ec;
2846
            dump(cont, options, indent, ec);
2847
            if (JSONCONS_UNLIKELY(ec))
2848
            {
2849
                JSONCONS_THROW(ser_error(ec));
2850
            }
2851
        }
2852
2853
        template <typename CharContainer>
2854
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2855
        dump_pretty(CharContainer& cont,
2856
            const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const
2857
        {
2858
            std::error_code ec;
2859
            dump_pretty(cont, options, ec);
2860
            if (JSONCONS_UNLIKELY(ec))
2861
            {
2862
                JSONCONS_THROW(ser_error(ec));
2863
            }
2864
        }
2865
2866
        void dump(std::basic_ostream<char_type>& os, 
2867
            const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const
2868
        {
2869
            std::error_code ec;
2870
            dump(os, options, indenting::no_indent, ec);
2871
            if (JSONCONS_UNLIKELY(ec))
2872
            {
2873
                JSONCONS_THROW(ser_error(ec));
2874
            }
2875
        }
2876
2877
        void dump(std::basic_ostream<char_type>& os, 
2878
            const basic_json_encode_options<char_type>& options,
2879
            indenting indent) const
2880
        {
2881
            std::error_code ec;
2882
            dump(os, options, indent, ec);
2883
            if (JSONCONS_UNLIKELY(ec))
2884
            {
2885
                JSONCONS_THROW(ser_error(ec));
2886
            }
2887
        }
2888
2889
        template <typename CharContainer>
2890
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2891
        dump_pretty(CharContainer& cont,
2892
            const basic_json_encode_options<char_type>& options, 
2893
            std::error_code& ec) const
2894
        {
2895
            basic_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont, options);
2896
            dump(encoder, ec);
2897
        }
2898
2899
        template <typename CharContainer>
2900
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2901
        dump_pretty(CharContainer& cont, 
2902
            std::error_code& ec) const
2903
        {
2904
            dump_pretty(cont, basic_json_encode_options<char_type>(), ec);
2905
        }
2906
2907
        void dump_pretty(std::basic_ostream<char_type>& os, 
2908
            const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const
2909
        {
2910
            std::error_code ec;
2911
            dump_pretty(os, options, ec);
2912
            if (JSONCONS_UNLIKELY(ec))
2913
            {
2914
                JSONCONS_THROW(ser_error(ec));
2915
            }
2916
        }
2917
2918
        void dump_pretty(std::basic_ostream<char_type>& os, 
2919
            const basic_json_encode_options<char_type>& options, 
2920
            std::error_code& ec) const
2921
        {
2922
            basic_json_encoder<char_type> encoder(os, options);
2923
            dump(encoder, ec);
2924
        }
2925
2926
        void dump_pretty(std::basic_ostream<char_type>& os, 
2927
            std::error_code& ec) const
2928
        {
2929
            dump_pretty(os, basic_json_encode_options<char_type>(), ec);
2930
        }
2931
2932
        template <typename CharContainer>
2933
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2934
        dump(CharContainer& cont, indenting indent) const
2935
        {
2936
            std::error_code ec;
2937
2938
            dump(cont, indent, ec);
2939
            if (JSONCONS_UNLIKELY(ec))
2940
            {
2941
                JSONCONS_THROW(ser_error(ec));
2942
            }
2943
        }
2944
2945
        void dump(std::basic_ostream<char_type>& os, 
2946
                  indenting indent) const
2947
        {
2948
            std::error_code ec;
2949
2950
            dump(os, indent, ec);
2951
            if (JSONCONS_UNLIKELY(ec))
2952
            {
2953
                JSONCONS_THROW(ser_error(ec));
2954
            }
2955
        }
2956
2957
        void dump(basic_json_visitor<char_type>& visitor) const
2958
        {
2959
            std::error_code ec;
2960
            dump(visitor, ec);
2961
            if (JSONCONS_UNLIKELY(ec))
2962
            {
2963
                JSONCONS_THROW(ser_error(ec));
2964
            }
2965
        }
2966
2967
        // dump
2968
        template <typename CharContainer>
2969
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2970
        dump(CharContainer& cont,
2971
                  const basic_json_encode_options<char_type>& options, 
2972
                  std::error_code& ec) const
2973
        {
2974
            basic_compact_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont, options);
2975
            dump(encoder, ec);
2976
        }
2977
2978
        template <typename CharContainer>
2979
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
2980
        dump(CharContainer& cont, std::error_code& ec) const
2981
        {
2982
            basic_compact_json_encoder<char_type,jsoncons::string_sink<CharContainer>> encoder(cont);
2983
            dump(encoder, ec);
2984
        }
2985
2986
        void dump(std::basic_ostream<char_type>& os, 
2987
                  const basic_json_encode_options<char_type>& options,
2988
                  std::error_code& ec) const
2989
        {
2990
            basic_compact_json_encoder<char_type> encoder(os, options);
2991
            dump(encoder, ec);
2992
        }
2993
2994
        void dump(std::basic_ostream<char_type>& os, 
2995
                  std::error_code& ec) const
2996
        {
2997
            basic_compact_json_encoder<char_type> encoder(os);
2998
            dump(encoder, ec);
2999
        }
3000
3001
        // legacy
3002
        template <typename CharContainer>
3003
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
3004
        dump(CharContainer& cont,
3005
                  const basic_json_encode_options<char_type>& options, 
3006
                  indenting indent,
3007
                  std::error_code& ec) const
3008
        {
3009
            if (indent == indenting::indent)
3010
            {
3011
                dump_pretty(cont, options, ec);
3012
            }
3013
            else
3014
            {
3015
                dump(cont, options, ec);
3016
            }
3017
        }
3018
3019
        template <typename CharContainer>
3020
        typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type
3021
        dump(CharContainer& cont, 
3022
                  indenting indent,
3023
                  std::error_code& ec) const
3024
        {
3025
            if (indent == indenting::indent)
3026
            {
3027
                dump_pretty(cont, ec);
3028
            }
3029
            else
3030
            {
3031
                dump(cont, ec);
3032
            }
3033
        }
3034
3035
        void dump(std::basic_ostream<char_type>& os, 
3036
                  const basic_json_encode_options<char_type>& options, 
3037
                  indenting indent,
3038
                  std::error_code& ec) const
3039
        {
3040
            if (indent == indenting::indent)
3041
            {
3042
                dump_pretty(os, options, ec);
3043
            }
3044
            else
3045
            {
3046
                dump(os, options, ec);
3047
            }
3048
        }
3049
3050
        void dump(std::basic_ostream<char_type>& os, 
3051
                  indenting indent,
3052
                  std::error_code& ec) const
3053
        {
3054
            if (indent == indenting::indent)
3055
            {
3056
                dump_pretty(os, ec);
3057
            }
3058
            else
3059
            {
3060
                dump(os, ec);
3061
            }
3062
        }
3063
    // end legacy
3064
3065
        void dump(basic_json_visitor<char_type>& visitor, 
3066
                  std::error_code& ec) const
3067
        {
3068
            dump_noflush(visitor, ec);
3069
            if (JSONCONS_UNLIKELY(ec))
3070
            {
3071
                return;
3072
            }
3073
            visitor.flush();
3074
        }
3075
3076
        write_result try_dump(basic_json_visitor<char_type>& visitor) const
3077
        {
3078
            auto r = try_dump_noflush(visitor);
3079
            visitor.flush();
3080
            return r;
3081
        }
3082
3083
        bool is_null() const noexcept
3084
        {
3085
            switch (storage_kind())
3086
            {
3087
                case json_storage_kind::null:
3088
                    return true;
3089
                case json_storage_kind::json_const_ref:
3090
                    return cast<const_ref_storage>().value().is_null();
3091
                case json_storage_kind::json_ref:
3092
                    return cast<ref_storage>().value().is_null();
3093
                default:
3094
                    return false;
3095
            }
3096
        }
3097
3098
        allocator_type get_default_allocator(std::false_type) const
3099
        {
3100
            JSONCONS_THROW(json_runtime_error<std::domain_error>("No default allocator if allocator is not default constructible."));
3101
        }
3102
3103
        allocator_type get_default_allocator(std::true_type) const
3104
        {
3105
            return allocator_type{};
3106
        }
3107
3108
        template <typename U=Allocator>
3109
        allocator_type get_allocator() const
3110
        {
3111
            switch (storage_kind())
3112
            {
3113
                case json_storage_kind::long_str:
3114
                    return cast<long_string_storage>().get_allocator();
3115
                case json_storage_kind::byte_str:
3116
                    return cast<byte_string_storage>().get_allocator();
3117
                case json_storage_kind::array:
3118
                    return cast<array_storage>().get_allocator();
3119
                case json_storage_kind::object:
3120
                    return cast<object_storage>().get_allocator();
3121
                case json_storage_kind::json_ref:
3122
                    return cast<ref_storage>().value().get_allocator();
3123
                default:
3124
                    return get_default_allocator(typename std::allocator_traits<U>::is_always_equal());
3125
            }
3126
        }
3127
3128
        uint64_t ext_tag() const
3129
        {
3130
            switch (storage_kind())
3131
            {
3132
                case json_storage_kind::byte_str:
3133
                {
3134
                    return cast<byte_string_storage>().ext_tag();
3135
                }
3136
                case json_storage_kind::json_const_ref:
3137
                    return cast<const_ref_storage>().value().ext_tag();
3138
                case json_storage_kind::json_ref:
3139
                    return cast<ref_storage>().value().ext_tag();
3140
                default:
3141
                    return 0;
3142
            }
3143
        }
3144
3145
        bool contains(const string_view_type& key) const noexcept
3146
        {
3147
            switch (storage_kind())
3148
            {
3149
                case json_storage_kind::object:
3150
                {
3151
                    auto it = cast<object_storage>().value().find(key);
3152
                    return it != cast<object_storage>().value().end();
3153
                }
3154
                case json_storage_kind::json_const_ref:
3155
                    return cast<const_ref_storage>().value().contains(key);
3156
                case json_storage_kind::json_ref:
3157
                    return cast<ref_storage>().value().contains(key);
3158
                default:
3159
                    return false;
3160
            }
3161
        }
3162
3163
        std::size_t count(const string_view_type& key) const
3164
        {
3165
            switch (storage_kind())
3166
            {
3167
                case json_storage_kind::object:
3168
                {
3169
                    auto it = cast<object_storage>().value().find(key);
3170
                    if (it == cast<object_storage>().value().end())
3171
                    {
3172
                        return 0;
3173
                    }
3174
                    std::size_t count = 0;
3175
                    while (it != cast<object_storage>().value().end()&& (*it).key() == key)
3176
                    {
3177
                        ++count;
3178
                        ++it;
3179
                    }
3180
                    return count;
3181
                }
3182
                case json_storage_kind::json_const_ref:
3183
                    return cast<const_ref_storage>().value().count(key);
3184
                case json_storage_kind::json_ref:
3185
                    return cast<ref_storage>().value().count(key);
3186
                default:
3187
                    return 0;
3188
            }
3189
        }
3190
3191
        template <typename T,typename... Args>
3192
        bool is(Args&&... args) const noexcept
3193
        {
3194
            return reflect::json_conv_traits<basic_json,T>::is(*this,std::forward<Args>(args)...);
3195
        }
3196
3197
        bool is_string() const noexcept
3198
        {
3199
            if (is_string_storage(storage_kind()))
3200
            {
3201
                return true;
3202
            }
3203
            if (storage_kind() == json_storage_kind::json_const_ref)
3204
            {
3205
                return cast<const_ref_storage>().value().is_string();
3206
            }
3207
            if (storage_kind() == json_storage_kind::json_ref)
3208
            {
3209
                return cast<const_ref_storage>().value().is_string();
3210
            }
3211
            return false;
3212
        }
3213
3214
        bool is_string_view() const noexcept
3215
        {
3216
            return is_string();
3217
        }
3218
3219
        bool is_byte_string() const noexcept
3220
        {
3221
            switch (storage_kind())
3222
            {
3223
                case json_storage_kind::byte_str:
3224
                    return true;
3225
                case json_storage_kind::json_const_ref:
3226
                    return cast<const_ref_storage>().value().is_byte_string();
3227
                case json_storage_kind::json_ref:
3228
                    return cast<ref_storage>().value().is_byte_string();
3229
                default:
3230
                    return false;
3231
            }
3232
        }
3233
3234
        bool is_byte_string_view() const noexcept
3235
        {
3236
            return is_byte_string();
3237
        }
3238
3239
        bool is_bignum() const
3240
        {
3241
            switch (storage_kind())
3242
            {
3243
                case json_storage_kind::short_str:
3244
                case json_storage_kind::long_str:
3245
                    return is_number_tag(tag());
3246
                case json_storage_kind::json_const_ref:
3247
                    return cast<const_ref_storage>().value().is_bignum();
3248
                case json_storage_kind::json_ref:
3249
                    return cast<ref_storage>().value().is_bignum();
3250
                default:
3251
                    return false;
3252
            }
3253
        }
3254
3255
        bool is_bool() const noexcept
3256
        {
3257
            switch (storage_kind())
3258
            {
3259
                case json_storage_kind::boolean:
3260
                    return true;
3261
                case json_storage_kind::json_const_ref:
3262
                    return cast<const_ref_storage>().value().is_bool();
3263
                case json_storage_kind::json_ref:
3264
                    return cast<ref_storage>().value().is_bool();
3265
                default:
3266
                    return false;
3267
            }
3268
        }
3269
3270
        bool is_object() const noexcept
3271
        {
3272
            switch (storage_kind())
3273
            {
3274
                case json_storage_kind::empty_object:
3275
                case json_storage_kind::object:
3276
                    return true;
3277
                case json_storage_kind::json_const_ref:
3278
                    return cast<const_ref_storage>().value().is_object();
3279
                case json_storage_kind::json_ref:
3280
                    return cast<ref_storage>().value().is_object();
3281
                default:
3282
                    return false;
3283
            }
3284
        }
3285
3286
        bool is_array() const noexcept
3287
        {
3288
            switch (storage_kind())
3289
            {
3290
                case json_storage_kind::array:
3291
                    return true;
3292
                case json_storage_kind::json_const_ref:
3293
                    return cast<const_ref_storage>().value().is_array();
3294
                case json_storage_kind::json_ref:
3295
                    return cast<ref_storage>().value().is_array();
3296
                default:
3297
                    return false;
3298
            }
3299
        }
3300
3301
        bool is_int64() const noexcept
3302
        {
3303
            switch (storage_kind())
3304
            {
3305
                case json_storage_kind::int64:
3306
                    return true;
3307
                case json_storage_kind::uint64:
3308
                    return as_integer<uint64_t>() <= static_cast<uint64_t>((std::numeric_limits<int64_t>::max)());
3309
                case json_storage_kind::json_const_ref:
3310
                    return cast<const_ref_storage>().value().is_int64();
3311
                case json_storage_kind::json_ref:
3312
                    return cast<ref_storage>().value().is_int64();
3313
                default:
3314
                    return false;
3315
            }
3316
        }
3317
3318
        bool is_uint64() const noexcept
3319
        {
3320
            switch (storage_kind())
3321
            {
3322
                case json_storage_kind::uint64:
3323
                    return true;
3324
                case json_storage_kind::int64:
3325
                    return as_integer<int64_t>() >= 0;
3326
                case json_storage_kind::json_const_ref:
3327
                    return cast<const_ref_storage>().value().is_uint64();
3328
                case json_storage_kind::json_ref:
3329
                    return cast<ref_storage>().value().is_uint64();
3330
                default:
3331
                    return false;
3332
            }
3333
        }
3334
3335
        bool is_half() const noexcept
3336
        {
3337
            switch (storage_kind())
3338
            {
3339
                case json_storage_kind::half_float:
3340
                    return true;
3341
                case json_storage_kind::json_const_ref:
3342
                    return cast<const_ref_storage>().value().is_half();
3343
                case json_storage_kind::json_ref:
3344
                    return cast<ref_storage>().value().is_half();
3345
                default:
3346
                    return false;
3347
            }
3348
        }
3349
3350
        bool is_double() const noexcept
3351
        {
3352
            switch (storage_kind())
3353
            {
3354
                case json_storage_kind::float64:
3355
                    return true;
3356
                case json_storage_kind::json_const_ref:
3357
                    return cast<const_ref_storage>().value().is_double();
3358
                case json_storage_kind::json_ref:
3359
                    return cast<ref_storage>().value().is_double();
3360
                default:
3361
                    return false;
3362
            }
3363
        }
3364
3365
        bool is_number() const noexcept
3366
        {
3367
            switch (storage_kind())
3368
            {
3369
                case json_storage_kind::int64:
3370
                case json_storage_kind::uint64:
3371
                case json_storage_kind::half_float:
3372
                case json_storage_kind::float64:
3373
                    return true;
3374
                case json_storage_kind::short_str:
3375
                case json_storage_kind::long_str:
3376
                    return is_number_tag(tag());
3377
                case json_storage_kind::json_const_ref:
3378
                    return cast<const_ref_storage>().value().is_number();
3379
                case json_storage_kind::json_ref:
3380
                    return cast<ref_storage>().value().is_number();
3381
                default:
3382
                    return false;
3383
            }
3384
        }
3385
3386
        bool empty() const noexcept
3387
256k
        {
3388
256k
            switch (storage_kind())
3389
256k
            {
3390
0
                case json_storage_kind::byte_str:
3391
0
                    return cast<byte_string_storage>().length() == 0;
3392
0
                    break;
3393
0
                case json_storage_kind::short_str:
3394
0
                    return cast<short_string_storage>().length() == 0;
3395
0
                case json_storage_kind::long_str:
3396
0
                    return cast<long_string_storage>().length() == 0;
3397
194k
                case json_storage_kind::array:
3398
194k
                    return cast<array_storage>().value().empty();
3399
0
                case json_storage_kind::empty_object:
3400
0
                    return true;
3401
61.7k
                case json_storage_kind::object:
3402
61.7k
                    return cast<object_storage>().value().empty();
3403
0
                case json_storage_kind::json_const_ref:
3404
0
                    return cast<const_ref_storage>().value().empty();
3405
0
                case json_storage_kind::json_ref:
3406
0
                    return cast<ref_storage>().value().empty();
3407
0
                default:
3408
0
                    return false;
3409
256k
            }
3410
256k
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::empty() const
Line
Count
Source
3387
256k
        {
3388
256k
            switch (storage_kind())
3389
256k
            {
3390
0
                case json_storage_kind::byte_str:
3391
0
                    return cast<byte_string_storage>().length() == 0;
3392
0
                    break;
3393
0
                case json_storage_kind::short_str:
3394
0
                    return cast<short_string_storage>().length() == 0;
3395
0
                case json_storage_kind::long_str:
3396
0
                    return cast<long_string_storage>().length() == 0;
3397
194k
                case json_storage_kind::array:
3398
194k
                    return cast<array_storage>().value().empty();
3399
0
                case json_storage_kind::empty_object:
3400
0
                    return true;
3401
61.7k
                case json_storage_kind::object:
3402
61.7k
                    return cast<object_storage>().value().empty();
3403
0
                case json_storage_kind::json_const_ref:
3404
0
                    return cast<const_ref_storage>().value().empty();
3405
0
                case json_storage_kind::json_ref:
3406
0
                    return cast<ref_storage>().value().empty();
3407
0
                default:
3408
0
                    return false;
3409
256k
            }
3410
256k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::empty() const
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty() const
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::empty() const
3411
3412
        std::size_t capacity() const
3413
        {
3414
            switch (storage_kind())
3415
            {
3416
                case json_storage_kind::array:
3417
                    return cast<array_storage>().value().capacity();
3418
                case json_storage_kind::object:
3419
                    return cast<object_storage>().value().capacity();
3420
                case json_storage_kind::json_const_ref:
3421
                    return cast<const_ref_storage>().value().capacity();
3422
                case json_storage_kind::json_ref:
3423
                    return cast<ref_storage>().value().capacity();
3424
                default:
3425
                    return 0;
3426
            }
3427
        }
3428
3429
        template <typename U=Allocator>
3430
        void create_object_implicitly()
3431
0
        {
3432
0
            create_object_implicitly(typename std::allocator_traits<U>::is_always_equal());
3433
0
        }
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >()
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >()
Unexecuted instantiation: void jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >()
Unexecuted instantiation: void jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly<std::__1::allocator<char> >()
3434
3435
        void create_object_implicitly(std::false_type)
3436
        {
3437
            JSONCONS_THROW(json_runtime_error<std::domain_error>("Cannot create object implicitly - allocator is stateful."));
3438
        }
3439
3440
        void create_object_implicitly(std::true_type)
3441
0
        {
3442
0
            *this = basic_json(json_object_arg, tag());
3443
0
        }
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>)
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::create_object_implicitly(std::__1::integral_constant<bool, true>)
3444
3445
        void reserve(std::size_t n)
3446
3.27M
        {
3447
3.27M
            if (n > 0)
3448
3.27M
            {
3449
3.27M
                switch (storage_kind())
3450
3.27M
                {
3451
3.27M
                    case json_storage_kind::array:
3452
3.27M
                        cast<array_storage>().value().reserve(n);
3453
3.27M
                        break;
3454
0
                    case json_storage_kind::empty_object:
3455
0
                        create_object_implicitly();
3456
0
                        cast<object_storage>().value().reserve(n);
3457
0
                        break;
3458
0
                    case json_storage_kind::object:
3459
0
                        cast<object_storage>().value().reserve(n);
3460
0
                        break;
3461
0
                    case json_storage_kind::json_ref:
3462
0
                        cast<ref_storage>().value().reserve(n);
3463
0
                        break;
3464
0
                    default:
3465
0
                        break;
3466
3.27M
                }
3467
3.27M
            }
3468
3.27M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::reserve(unsigned long)
Line
Count
Source
3446
76.0k
        {
3447
76.0k
            if (n > 0)
3448
76.0k
            {
3449
76.0k
                switch (storage_kind())
3450
76.0k
                {
3451
76.0k
                    case json_storage_kind::array:
3452
76.0k
                        cast<array_storage>().value().reserve(n);
3453
76.0k
                        break;
3454
0
                    case json_storage_kind::empty_object:
3455
0
                        create_object_implicitly();
3456
0
                        cast<object_storage>().value().reserve(n);
3457
0
                        break;
3458
0
                    case json_storage_kind::object:
3459
0
                        cast<object_storage>().value().reserve(n);
3460
0
                        break;
3461
0
                    case json_storage_kind::json_ref:
3462
0
                        cast<ref_storage>().value().reserve(n);
3463
0
                        break;
3464
0
                    default:
3465
0
                        break;
3466
76.0k
                }
3467
76.0k
            }
3468
76.0k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::reserve(unsigned long)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::reserve(unsigned long)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::reserve(unsigned long)
Line
Count
Source
3446
3.20M
        {
3447
3.20M
            if (n > 0)
3448
3.20M
            {
3449
3.20M
                switch (storage_kind())
3450
3.20M
                {
3451
3.20M
                    case json_storage_kind::array:
3452
3.20M
                        cast<array_storage>().value().reserve(n);
3453
3.20M
                        break;
3454
0
                    case json_storage_kind::empty_object:
3455
0
                        create_object_implicitly();
3456
0
                        cast<object_storage>().value().reserve(n);
3457
0
                        break;
3458
0
                    case json_storage_kind::object:
3459
0
                        cast<object_storage>().value().reserve(n);
3460
0
                        break;
3461
0
                    case json_storage_kind::json_ref:
3462
0
                        cast<ref_storage>().value().reserve(n);
3463
0
                        break;
3464
0
                    default:
3465
0
                        break;
3466
3.20M
                }
3467
3.20M
            }
3468
3.20M
        }
3469
3470
        void resize(std::size_t n)
3471
        {
3472
            switch (storage_kind())
3473
            {
3474
                case json_storage_kind::array:
3475
                    cast<array_storage>().value().resize(n);
3476
                    break;
3477
                case json_storage_kind::json_ref:
3478
                    cast<ref_storage>().value().resize(n);
3479
                    break;
3480
                default:
3481
                    break;
3482
            }
3483
        }
3484
3485
        template <typename T>
3486
        void resize(std::size_t n, T val)
3487
        {
3488
            switch (storage_kind())
3489
            {
3490
                case json_storage_kind::array:
3491
                    cast<array_storage>().value().resize(n, val);
3492
                    break;
3493
                case json_storage_kind::json_ref:
3494
                    cast<ref_storage>().value().resize(n, val);
3495
                    break;
3496
                default:
3497
                    break;
3498
            }
3499
        }
3500
3501
        template <typename T>
3502
        typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,T>::type
3503
        as() const
3504
        {
3505
            auto r = reflect::json_conv_traits<basic_json,T>::try_as(make_alloc_set(), *this);
3506
            if (!r)
3507
            {
3508
                JSONCONS_THROW(conv_error(r.error().code(), r.error().message_arg()));
3509
            }
3510
            return std::move(r.value());
3511
        }
3512
3513
        template <typename T, typename Alloc, typename TempAlloc>
3514
        typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,T>::type
3515
        as(const allocator_set<Alloc,TempAlloc>& aset) const
3516
        {
3517
            auto r = reflect::json_conv_traits<basic_json,T>::try_as(aset, *this);
3518
            if (!r)
3519
            {
3520
                JSONCONS_THROW(conv_error(r.error().code(), r.error().message_arg()));
3521
            }
3522
            return std::move(r.value());
3523
        }
3524
3525
        template <typename T>
3526
        typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,conversion_result<T>>::type
3527
        try_as() const
3528
        {
3529
            return reflect::json_conv_traits<basic_json,T>::try_as(make_alloc_set(), *this);
3530
        }
3531
3532
        template <typename T, typename Alloc, typename TempAlloc>
3533
        typename std::enable_if<reflect::is_json_conv_traits_specialized<basic_json,T>::value,conversion_result<T>>::type
3534
        try_as(const allocator_set<Alloc,TempAlloc>& aset) const
3535
        {
3536
            return reflect::json_conv_traits<basic_json,T>::try_as(aset, *this);
3537
        }
3538
3539
        template <typename T>
3540
        typename std::enable_if<(!ext_traits::is_string<T>::value && 
3541
                                 ext_traits::is_back_insertable_byte_container<T>::value) ||
3542
                                 ext_traits::is_basic_byte_string<T>::value,T>::type
3543
        as(byte_string_arg_t, semantic_tag hint) const
3544
        {
3545
            std::error_code ec;
3546
            switch (storage_kind())
3547
            {
3548
                case json_storage_kind::short_str:
3549
                case json_storage_kind::long_str:
3550
                {
3551
                    switch (tag())
3552
                    {
3553
                        case semantic_tag::base16:
3554
                        case semantic_tag::base64:
3555
                        case semantic_tag::base64url:
3556
                        {
3557
                            T v;
3558
                            auto sv = as_string_view();
3559
                            auto r = string_to_bytes(sv.begin(), sv.end(), tag(), v);
3560
                            if (JSONCONS_UNLIKELY(r.ec != conv_errc{}))
3561
                            {
3562
                                JSONCONS_THROW(ser_error(conv_errc::not_byte_string));
3563
                            }
3564
                            return v;
3565
                        }
3566
                        default:
3567
                        {
3568
                            T v;
3569
                            auto sv = as_string_view();
3570
                            auto r = string_to_bytes(sv.begin(), sv.end(), hint, v);
3571
                            if (JSONCONS_UNLIKELY(r.ec != conv_errc{}))
3572
                            {
3573
                                JSONCONS_THROW(ser_error(conv_errc::not_byte_string));
3574
                            }
3575
                            return v;
3576
                        }
3577
                        break;
3578
                    }
3579
                    break;
3580
                }
3581
                case json_storage_kind::byte_str:
3582
                    return T(as_byte_string_view().begin(), as_byte_string_view().end());
3583
                case json_storage_kind::json_const_ref:
3584
                    return cast<const_ref_storage>().value().template as<T>(byte_string_arg, hint);
3585
                case json_storage_kind::json_ref:
3586
                    return cast<ref_storage>().value().template as<T>(byte_string_arg, hint);
3587
                default:
3588
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a byte string"));
3589
            }
3590
        }
3591
3592
        bool as_bool() const 
3593
        {
3594
            switch (storage_kind())
3595
            {
3596
                case json_storage_kind::boolean:
3597
                    return cast<bool_storage>().value();
3598
                case json_storage_kind::int64:
3599
                    return cast<int64_storage>().value() != 0;
3600
                case json_storage_kind::uint64:
3601
                    return cast<uint64_storage>().value() != 0;
3602
                case json_storage_kind::json_const_ref:
3603
                    return cast<const_ref_storage>().value().as_bool();
3604
                case json_storage_kind::json_ref:
3605
                    return cast<ref_storage>().value().as_bool();
3606
                default:
3607
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a bool"));
3608
            }
3609
        }
3610
3611
        template <typename T>
3612
        conversion_result<T> try_as_integer() const
3613
        {
3614
            using result_type = conversion_result<T>;
3615
            
3616
            switch (storage_kind())
3617
            {
3618
                case json_storage_kind::short_str:
3619
                case json_storage_kind::long_str:
3620
                {
3621
                    T val;
3622
                    auto result = jsoncons::to_integer<T>(as_string_view().data(), as_string_view().length(), val);
3623
                    if (!result)
3624
                    {
3625
                        return result_type(jsoncons::unexpect, conv_errc::not_integer);
3626
                    }
3627
                    return val;
3628
                }
3629
                case json_storage_kind::half_float:
3630
                    return result_type(static_cast<T>(cast<half_storage>().value()));
3631
                case json_storage_kind::float64:
3632
                    return result_type(static_cast<T>(cast<double_storage>().value()));
3633
                case json_storage_kind::int64:
3634
                    return result_type(static_cast<T>(cast<int64_storage>().value()));
3635
                case json_storage_kind::uint64:
3636
                    return result_type(static_cast<T>(cast<uint64_storage>().value()));
3637
                case json_storage_kind::boolean:
3638
                    return result_type(static_cast<T>(cast<bool_storage>().value() ? 1 : 0));
3639
                case json_storage_kind::json_const_ref:
3640
                    return cast<const_ref_storage>().value().template try_as_integer<T>();
3641
                case json_storage_kind::json_ref:
3642
                    return cast<ref_storage>().value().template try_as_integer<T>();
3643
                default:
3644
                    return result_type(jsoncons::unexpect, conv_errc::not_integer);
3645
            }
3646
        }
3647
3648
        template <typename T>
3649
        T as_integer() const
3650
        {
3651
            auto result = try_as_integer<T>();
3652
            if (!result)
3653
            {
3654
                JSONCONS_THROW(conv_error(result.error().code()));
3655
            }
3656
            return *result;
3657
        }
3658
3659
        template <typename T>
3660
        typename std::enable_if<ext_traits::is_signed_integer<T>::value && sizeof(T) <= sizeof(int64_t),bool>::type
3661
        is_integer() const noexcept
3662
        {
3663
            switch (storage_kind())
3664
            {
3665
                case json_storage_kind::int64:
3666
                    return (as_integer<int64_t>() >= (ext_traits::integer_limits<T>::lowest)()) && (as_integer<int64_t>() <= (ext_traits::integer_limits<T>::max)());
3667
                case json_storage_kind::uint64:
3668
                    return as_integer<uint64_t>() <= static_cast<uint64_t>((ext_traits::integer_limits<T>::max)());
3669
                case json_storage_kind::json_const_ref:
3670
                    return cast<const_ref_storage>().value().template is_integer<T>();
3671
                case json_storage_kind::json_ref:
3672
                    return cast<ref_storage>().value().template is_integer<T>();
3673
                default:
3674
                    return false;
3675
            }
3676
        }
3677
3678
        template <typename T>
3679
        typename std::enable_if<ext_traits::is_signed_integer<T>::value && sizeof(int64_t) < sizeof(T),bool>::type
3680
        is_integer() const noexcept
3681
        {
3682
            switch (storage_kind())
3683
            {
3684
                case json_storage_kind::short_str:
3685
                case json_storage_kind::long_str:
3686
                {
3687
                    T val;
3688
                    auto result = jsoncons::to_integer<T>(as_string_view().data(), as_string_view().length(), val);
3689
                    return result ? true : false;
3690
                }
3691
                case json_storage_kind::int64:
3692
                    return (as_integer<int64_t>() >= (ext_traits::integer_limits<T>::lowest)()) && (as_integer<int64_t>() <= (ext_traits::integer_limits<T>::max)());
3693
                case json_storage_kind::uint64:
3694
                    return as_integer<uint64_t>() <= static_cast<uint64_t>((ext_traits::integer_limits<T>::max)());
3695
                case json_storage_kind::json_const_ref:
3696
                    return cast<const_ref_storage>().value().template is_integer<T>();
3697
                case json_storage_kind::json_ref:
3698
                    return cast<ref_storage>().value().template is_integer<T>();
3699
                default:
3700
                    return false;
3701
            }
3702
        }
3703
3704
        template <typename IntegerType>
3705
        typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(IntegerType) <= sizeof(int64_t),bool>::type
3706
        is_integer() const noexcept
3707
        {
3708
            switch (storage_kind())
3709
            {
3710
                case json_storage_kind::int64:
3711
                    return as_integer<int64_t>() >= 0 && static_cast<uint64_t>(as_integer<int64_t>()) <= (ext_traits::integer_limits<IntegerType>::max)();
3712
                case json_storage_kind::uint64:
3713
                    return as_integer<uint64_t>() <= (ext_traits::integer_limits<IntegerType>::max)();
3714
                case json_storage_kind::json_const_ref:
3715
                    return cast<const_ref_storage>().value().template is_integer<IntegerType>();
3716
                case json_storage_kind::json_ref:
3717
                    return cast<ref_storage>().value().template is_integer<IntegerType>();
3718
                default:
3719
                    return false;
3720
            }
3721
        }
3722
3723
        template <typename IntegerType>
3724
        typename std::enable_if<ext_traits::is_unsigned_integer<IntegerType>::value && sizeof(int64_t) < sizeof(IntegerType),bool>::type
3725
        is_integer() const noexcept
3726
        {
3727
            switch (storage_kind())
3728
            {
3729
                case json_storage_kind::short_str:
3730
                case json_storage_kind::long_str:
3731
                {
3732
                    IntegerType val;
3733
                    auto result = jsoncons::to_integer<IntegerType>(as_string_view().data(), as_string_view().length(), val);
3734
                    return result ? true : false;
3735
                }
3736
                case json_storage_kind::int64:
3737
                    return as_integer<int64_t>() >= 0 && static_cast<uint64_t>(as_integer<int64_t>()) <= (ext_traits::integer_limits<IntegerType>::max)();
3738
                case json_storage_kind::uint64:
3739
                    return as_integer<uint64_t>() <= (ext_traits::integer_limits<IntegerType>::max)();
3740
                case json_storage_kind::json_const_ref:
3741
                    return cast<const_ref_storage>().value().template is_integer<IntegerType>();
3742
                case json_storage_kind::json_ref:
3743
                    return cast<ref_storage>().value().template is_integer<IntegerType>();
3744
                default:
3745
                    return false;
3746
            }
3747
        }
3748
3749
        conversion_result<double> try_as_double() const
3750
        {
3751
            using result_type = conversion_result<double>;
3752
3753
            switch (storage_kind())
3754
            {
3755
                case json_storage_kind::short_str:
3756
                case json_storage_kind::long_str:
3757
                {
3758
                    double x{0};
3759
                    const char_type* s = as_cstring();
3760
                    std::size_t len = as_string_view().length();
3761
                    if (JSONCONS_UNLIKELY(len > 2 && s[0] == '0' && (s[1] == 'x' || s[1] == 'X')))
3762
                    {
3763
                        auto result = jsoncons::hexstr_to_double(s, len, x);
3764
                        if (result.ec == std::errc::invalid_argument)
3765
                        {
3766
                            return result_type(jsoncons::unexpect, conv_errc::not_double);
3767
                        }
3768
                    }
3769
                    else if (JSONCONS_UNLIKELY(len > 3 && s[0] == '-' && s[1] == '0' && (s[2] == 'x' || s[2] == 'X')))
3770
                    {
3771
                        auto result = jsoncons::hexstr_to_double(s, len, x);
3772
                        if (result.ec == std::errc::invalid_argument)
3773
                        {
3774
                            return result_type(jsoncons::unexpect, conv_errc::not_double);
3775
                        }
3776
                    }
3777
                    else
3778
                    {
3779
                        auto result = jsoncons::decstr_to_double(as_cstring(), as_string_view().length(), x);
3780
                        if (result.ec == std::errc::invalid_argument)
3781
                        {
3782
                            return result_type(jsoncons::unexpect, conv_errc::not_double);
3783
                        }
3784
                    }
3785
                    
3786
                    return result_type(x);
3787
                }
3788
                case json_storage_kind::half_float:
3789
                    return result_type(binary::decode_half(cast<half_storage>().value()));
3790
                case json_storage_kind::float64:
3791
                    return result_type(cast<double_storage>().value());
3792
                case json_storage_kind::int64:
3793
                    return result_type(static_cast<double>(cast<int64_storage>().value()));
3794
                case json_storage_kind::uint64:
3795
                    return result_type(static_cast<double>(cast<uint64_storage>().value()));
3796
                case json_storage_kind::json_const_ref:
3797
                    return cast<const_ref_storage>().value().try_as_double();
3798
                case json_storage_kind::json_ref:
3799
                    return cast<ref_storage>().value().try_as_double();
3800
                default:
3801
                    return result_type(jsoncons::unexpect, conv_errc::not_double);
3802
            }
3803
        }
3804
3805
        double as_double() const
3806
        {
3807
            auto result = try_as_double();
3808
            if (!result)
3809
            {
3810
                JSONCONS_THROW(conv_error(result.error().code()));
3811
            }
3812
            return *result;
3813
        }
3814
3815
        template <typename T,typename Alloc, typename TempAlloc>
3816
        typename std::enable_if<ext_traits::is_string<T>::value &&
3817
                               std::is_same<char_type,typename T::value_type>::value,conversion_result<T>>::type
3818
        try_as_string(const allocator_set<Alloc,TempAlloc>& aset) const
3819
        {
3820
            using value_type = T;
3821
            using result_type = conversion_result<value_type>;
3822
3823
            switch (storage_kind())
3824
            {
3825
                case json_storage_kind::short_str:
3826
                {
3827
                    auto& stor = cast<short_string_storage>();
3828
                    return result_type(jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), stor.data(), stor.length()));
3829
                }
3830
                case json_storage_kind::long_str:
3831
                {
3832
                    auto& stor = cast<long_string_storage>();
3833
                    return result_type(jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator(), stor.data(), stor.length()));
3834
                }
3835
                case json_storage_kind::byte_str:
3836
                {
3837
                    auto& stor = cast<byte_string_storage>();
3838
                    value_type s = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator());
3839
                    bytes_to_string(stor.data(), stor.data()+stor.length(), tag(), s);
3840
                    return result_type(std::move(s));
3841
                }
3842
                case json_storage_kind::json_const_ref:
3843
                    return cast<const_ref_storage>().value().template try_as_string<T>(aset);
3844
                case json_storage_kind::json_ref:
3845
                    return cast<ref_storage>().value().template try_as_string<T>(aset);
3846
                default:
3847
                {
3848
                    value_type s = jsoncons::make_obj_using_allocator<value_type>(aset.get_allocator());
3849
                    basic_compact_json_encoder<char_type,jsoncons::string_sink<value_type>,TempAlloc> encoder(s, aset.get_temp_allocator());
3850
                    std::error_code ec;
3851
                    dump(encoder, ec);
3852
                    if (JSONCONS_UNLIKELY(ec))
3853
                    {
3854
                        return result_type(jsoncons::unexpect, ec);
3855
                    }
3856
                    return result_type(std::move(s));
3857
                }
3858
            }
3859
        }
3860
3861
        template <typename CharsAlloc>
3862
        std::basic_string<char_type,char_traits_type,CharsAlloc> as_string(const CharsAlloc& alloc) const 
3863
        {
3864
            using value_type = std::basic_string<char_type,char_traits_type,CharsAlloc>;
3865
            auto r = try_as_string<value_type>(make_alloc_set(alloc));
3866
            if (!r)
3867
            {
3868
                JSONCONS_THROW(conv_error(r.error().code()));
3869
            }
3870
            return *r;
3871
        }
3872
3873
        template <typename CharsAlloc=std::allocator<char_type>>
3874
        std::basic_string<char_type,char_traits_type,CharsAlloc> as_string() const 
3875
        {
3876
            return as_string(CharsAlloc());
3877
        }
3878
3879
        std::basic_string<char_type,char_traits_type> as_string() const 
3880
        {
3881
            return as_string(std::allocator<char_type>()); 
3882
        }
3883
3884
        const char_type* as_cstring() const
3885
        {
3886
            switch (storage_kind())
3887
            {
3888
                case json_storage_kind::short_str:
3889
                    return cast<short_string_storage>().c_str();
3890
                case json_storage_kind::long_str:
3891
                    return cast<long_string_storage>().c_str();
3892
                case json_storage_kind::json_const_ref:
3893
                    return cast<const_ref_storage>().value().as_cstring();
3894
                case json_storage_kind::json_ref:
3895
                    return cast<ref_storage>().value().as_cstring();
3896
                default:
3897
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not a cstring"));
3898
            }
3899
        }
3900
3901
        basic_json& at(const string_view_type& key)
3902
        {
3903
            switch (storage_kind())
3904
            {
3905
                case json_storage_kind::empty_object:
3906
                    JSONCONS_THROW(key_not_found(key.data(),key.length()));
3907
                case json_storage_kind::object:
3908
                {
3909
                    auto it = cast<object_storage>().value().find(key);
3910
                    if (it == cast<object_storage>().value().end())
3911
                    {
3912
                        JSONCONS_THROW(key_not_found(key.data(),key.length()));
3913
                    }
3914
                    return (*it).value();
3915
                }
3916
                case json_storage_kind::json_ref:
3917
                    return cast<ref_storage>().value().at(key);
3918
                default:
3919
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
3920
            }
3921
        }
3922
3923
        const basic_json& at(const string_view_type& key) const
3924
        {
3925
            switch (storage_kind())
3926
            {
3927
                case json_storage_kind::empty_object:
3928
                    JSONCONS_THROW(key_not_found(key.data(),key.length()));
3929
                case json_storage_kind::object:
3930
                {
3931
                    auto it = cast<object_storage>().value().find(key);
3932
                    if (it == cast<object_storage>().value().end())
3933
                    {
3934
                        JSONCONS_THROW(key_not_found(key.data(),key.length()));
3935
                    }
3936
                    return (*it).value();
3937
                }
3938
                case json_storage_kind::json_const_ref:
3939
                    return cast<const_ref_storage>().value().at(key);
3940
                case json_storage_kind::json_ref:
3941
                    return cast<ref_storage>().value().at(key);
3942
                default:
3943
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
3944
            }
3945
        }
3946
3947
        basic_json& at(std::size_t i)
3948
        {
3949
            switch (storage_kind())
3950
            {
3951
                case json_storage_kind::array:
3952
                    if (i >= cast<array_storage>().value().size())
3953
                    {
3954
                        JSONCONS_THROW(json_runtime_error<std::out_of_range>("Invalid array subscript"));
3955
                    }
3956
                    return cast<array_storage>().value().operator[](i);
3957
                case json_storage_kind::object:
3958
                    return cast<object_storage>().value().at(i);
3959
                case json_storage_kind::json_ref:
3960
                    return cast<ref_storage>().value().at(i);
3961
                default:
3962
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Index on non-array value not supported"));
3963
            }
3964
        }
3965
3966
        const basic_json& at(std::size_t i) const
3967
        {
3968
            switch (storage_kind())
3969
            {
3970
                case json_storage_kind::array:
3971
                    if (i >= cast<array_storage>().value().size())
3972
                    {
3973
                        JSONCONS_THROW(json_runtime_error<std::out_of_range>("Invalid array subscript"));
3974
                    }
3975
                    return cast<array_storage>().value().operator[](i);
3976
                case json_storage_kind::object:
3977
                    return cast<object_storage>().value().at(i);
3978
                case json_storage_kind::json_const_ref:
3979
                    return cast<const_ref_storage>().value().at(i);
3980
                case json_storage_kind::json_ref:
3981
                    return cast<ref_storage>().value().at(i);
3982
                default:
3983
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Index on non-array value not supported"));
3984
            }
3985
        }
3986
3987
        object_iterator find(const string_view_type& key)
3988
        {
3989
            switch (storage_kind())
3990
            {
3991
                case json_storage_kind::empty_object:
3992
                    return object_range().end();
3993
                case json_storage_kind::object:
3994
                    return object_iterator(cast<object_storage>().value().find(key));
3995
                case json_storage_kind::json_ref:
3996
                    return cast<ref_storage>().value().find(key);
3997
                default:
3998
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
3999
            }
4000
        }
4001
4002
        const_object_iterator find(const string_view_type& key) const
4003
        {
4004
            switch (storage_kind())
4005
            {
4006
                case json_storage_kind::empty_object:
4007
                    return object_range().end();
4008
                case json_storage_kind::object:
4009
                    return const_object_iterator(cast<object_storage>().value().find(key));
4010
                case json_storage_kind::json_const_ref:
4011
                    return cast<const_ref_storage>().value().find(key);
4012
                case json_storage_kind::json_ref:
4013
                    return cast<ref_storage>().value().find(key);
4014
                default:
4015
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4016
            }
4017
        }
4018
4019
        const basic_json& at_or_null(const string_view_type& key) const
4020
        {
4021
            switch (storage_kind())
4022
            {
4023
                case json_storage_kind::null:
4024
                case json_storage_kind::empty_object:
4025
                {
4026
                    return null();
4027
                }
4028
                case json_storage_kind::object:
4029
                {
4030
                    auto it = cast<object_storage>().value().find(key);
4031
                    if (it != cast<object_storage>().value().end())
4032
                    {
4033
                        return (*it).value();
4034
                    }
4035
                    else
4036
                    {
4037
                        return null();
4038
                    }
4039
                }
4040
                case json_storage_kind::json_const_ref:
4041
                    return cast<const_ref_storage>().value().at_or_null(key);
4042
                case json_storage_kind::json_ref:
4043
                    return cast<ref_storage>().value().at_or_null(key);
4044
                default:
4045
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4046
            }
4047
        }
4048
4049
        template <typename T,typename U>
4050
        T get_value_or(const string_view_type& key, U&& default_value) const
4051
        {
4052
            static_assert(std::is_copy_constructible<T>::value,
4053
                          "get_value_or: T must be copy constructible");
4054
            static_assert(std::is_convertible<U&&, T>::value,
4055
                          "get_value_or: U must be convertible to T");
4056
            switch (storage_kind())
4057
            {
4058
                case json_storage_kind::null:
4059
                case json_storage_kind::empty_object:
4060
                    return static_cast<T>(std::forward<U>(default_value));
4061
                case json_storage_kind::object:
4062
                {
4063
                    auto it = cast<object_storage>().value().find(key);
4064
                    if (it != cast<object_storage>().value().end())
4065
                    {
4066
                        return (*it).value().template as<T>();
4067
                    }
4068
                    else
4069
                    {
4070
                        return static_cast<T>(std::forward<U>(default_value));
4071
                    }
4072
                }
4073
                case json_storage_kind::json_const_ref:
4074
                    return cast<const_ref_storage>().value().template get_value_or<T,U>(key,std::forward<U>(default_value));
4075
                case json_storage_kind::json_ref:
4076
                    return cast<ref_storage>().value().template get_value_or<T,U>(key,std::forward<U>(default_value));
4077
                default:
4078
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4079
            }
4080
        }
4081
4082
        // Modifiers
4083
4084
        void shrink_to_fit()
4085
        {
4086
            switch (storage_kind())
4087
            {
4088
                case json_storage_kind::array:
4089
                    cast<array_storage>().value().shrink_to_fit();
4090
                    break;
4091
                case json_storage_kind::object:
4092
                    cast<object_storage>().value().shrink_to_fit();
4093
                    break;
4094
                case json_storage_kind::json_ref:
4095
                    cast<ref_storage>().value().shrink_to_fit();
4096
                    break;
4097
                default:
4098
                    break;
4099
            }
4100
        }
4101
4102
        void clear()
4103
5.71M
        {
4104
5.71M
            switch (storage_kind())
4105
5.71M
            {
4106
2.71M
                case json_storage_kind::array:
4107
2.71M
                    cast<array_storage>().value().clear();
4108
2.71M
                    break;
4109
3.00M
                case json_storage_kind::object:
4110
3.00M
                    cast<object_storage>().value().clear();
4111
3.00M
                    break;
4112
0
                case json_storage_kind::json_ref:
4113
0
                    cast<ref_storage>().value().clear();
4114
0
                    break;
4115
0
                default:
4116
0
                    break;
4117
5.71M
            }
4118
5.71M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::clear()
Line
Count
Source
4103
3.07M
        {
4104
3.07M
            switch (storage_kind())
4105
3.07M
            {
4106
69.9k
                case json_storage_kind::array:
4107
69.9k
                    cast<array_storage>().value().clear();
4108
69.9k
                    break;
4109
3.00M
                case json_storage_kind::object:
4110
3.00M
                    cast<object_storage>().value().clear();
4111
3.00M
                    break;
4112
0
                case json_storage_kind::json_ref:
4113
0
                    cast<ref_storage>().value().clear();
4114
0
                    break;
4115
0
                default:
4116
0
                    break;
4117
3.07M
            }
4118
3.07M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::clear()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::clear()
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::clear()
Line
Count
Source
4103
2.64M
        {
4104
2.64M
            switch (storage_kind())
4105
2.64M
            {
4106
2.64M
                case json_storage_kind::array:
4107
2.64M
                    cast<array_storage>().value().clear();
4108
2.64M
                    break;
4109
0
                case json_storage_kind::object:
4110
0
                    cast<object_storage>().value().clear();
4111
0
                    break;
4112
0
                case json_storage_kind::json_ref:
4113
0
                    cast<ref_storage>().value().clear();
4114
0
                    break;
4115
0
                default:
4116
0
                    break;
4117
2.64M
            }
4118
2.64M
        }
4119
4120
        object_iterator erase(const_object_iterator pos)
4121
        {
4122
            switch (storage_kind())
4123
            {
4124
                case json_storage_kind::empty_object:
4125
                    return object_range().end();
4126
                case json_storage_kind::object:
4127
                    return object_iterator(cast<object_storage>().value().erase(pos));
4128
                case json_storage_kind::json_ref:
4129
                    return cast<ref_storage>().value().erase(pos);
4130
            default:
4131
                JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object"));
4132
            }
4133
        }
4134
4135
        object_iterator erase(const_object_iterator first, const_object_iterator last)
4136
        {
4137
            switch (storage_kind())
4138
            {
4139
                case json_storage_kind::empty_object:
4140
                    return object_range().end();
4141
                case json_storage_kind::object:
4142
                    return object_iterator(cast<object_storage>().value().erase(first, last));
4143
                case json_storage_kind::json_ref:
4144
                    return cast<ref_storage>().value().erase(first, last);
4145
                default:
4146
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object"));
4147
            }
4148
        }
4149
4150
        array_iterator erase(const_array_iterator pos)
4151
        {
4152
            switch (storage_kind())
4153
            {
4154
                case json_storage_kind::array:
4155
                    return cast<array_storage>().value().erase(pos);
4156
                case json_storage_kind::json_ref:
4157
                    return cast<ref_storage>().value().erase(pos);
4158
                default:
4159
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4160
            }
4161
        }
4162
4163
        array_iterator erase(const_array_iterator first, const_array_iterator last)
4164
        {
4165
            switch (storage_kind())
4166
            {
4167
                case json_storage_kind::array:
4168
                    return cast<array_storage>().value().erase(first, last);
4169
                case json_storage_kind::json_ref:
4170
                    return cast<ref_storage>().value().erase(first, last);
4171
                default:
4172
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4173
            }
4174
        }
4175
4176
        // Removes all elements from an array value whose index is between from_index, inclusive, and to_index, exclusive.
4177
4178
        void erase(const string_view_type& key)
4179
        {
4180
            switch (storage_kind())
4181
            {
4182
                case json_storage_kind::empty_object:
4183
                    break;
4184
                case json_storage_kind::object:
4185
                    cast<object_storage>().value().erase(key);
4186
                    break;
4187
                case json_storage_kind::json_ref:
4188
                    return cast<ref_storage>().value().erase(key);
4189
                default:
4190
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4191
            }
4192
        }
4193
4194
        template <typename T>
4195
        std::pair<object_iterator,bool> insert_or_assign(const string_view_type& key, T&& val)
4196
        {
4197
            switch (storage_kind())
4198
            {
4199
                case json_storage_kind::empty_object:
4200
                {
4201
                    create_object_implicitly();
4202
                    auto result = cast<object_storage>().value().insert_or_assign(key, std::forward<T>(val));
4203
                    return std::make_pair(object_iterator(result.first), result.second);
4204
                }
4205
                case json_storage_kind::object:
4206
                {
4207
                    auto result = cast<object_storage>().value().insert_or_assign(key, std::forward<T>(val));
4208
                    return std::make_pair(object_iterator(result.first), result.second);
4209
                }
4210
                case json_storage_kind::json_ref:
4211
                    return cast<ref_storage>().value().insert_or_assign(key, std::forward<T>(val));
4212
                default:
4213
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4214
            }
4215
        }
4216
4217
        template <typename ... Args>
4218
        std::pair<object_iterator,bool> try_emplace(const string_view_type& key, Args&&... args)
4219
        {
4220
            switch (storage_kind())
4221
            {
4222
                case json_storage_kind::empty_object:
4223
                {
4224
                    create_object_implicitly();
4225
                    auto result = cast<object_storage>().value().try_emplace(key, std::forward<Args>(args)...);
4226
                    return std::make_pair(object_iterator(result.first),result.second);
4227
                }
4228
                case json_storage_kind::object:
4229
                {
4230
                    auto result = cast<object_storage>().value().try_emplace(key, std::forward<Args>(args)...);
4231
                    return std::make_pair(object_iterator(result.first),result.second);
4232
                }
4233
                case json_storage_kind::json_ref:
4234
                    return cast<ref_storage>().value().try_emplace(key, std::forward<Args>(args)...);
4235
                default:
4236
                    JSONCONS_THROW(not_an_object(key.data(),key.length()));
4237
            }
4238
        }
4239
4240
        // merge
4241
4242
        void merge(const basic_json& source)
4243
        {
4244
            switch (source.storage_kind())
4245
            {
4246
                case json_storage_kind::empty_object:
4247
                    break;
4248
                case json_storage_kind::object:
4249
                    switch (storage_kind())
4250
                    {
4251
                        case json_storage_kind::empty_object:
4252
                            create_object_implicitly();
4253
                            cast<object_storage>().value().merge(source.cast<object_storage>().value());
4254
                            break;
4255
                        case json_storage_kind::object:
4256
                            cast<object_storage>().value().merge(source.cast<object_storage>().value());
4257
                            break;
4258
                        case json_storage_kind::json_ref:
4259
                            cast<ref_storage>().value().merge(source);
4260
                            break;
4261
                        default:
4262
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4263
                    }
4264
                    break;
4265
                case json_storage_kind::json_ref:
4266
                    merge(source.cast<ref_storage>().value());
4267
                    break;
4268
               default:
4269
                   JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4270
           }
4271
        }
4272
4273
        void merge(basic_json&& source)
4274
        {
4275
            switch (source.storage_kind())
4276
            {
4277
                case json_storage_kind::empty_object:
4278
                    break;
4279
                case json_storage_kind::object:
4280
                    switch (storage_kind())
4281
                    {
4282
                        case json_storage_kind::empty_object:
4283
                            create_object_implicitly();
4284
                            cast<object_storage>().value().merge(std::move(source.cast<object_storage>().value()));
4285
                            break;
4286
                        case json_storage_kind::object:
4287
                            cast<object_storage>().value().merge(std::move(source.cast<object_storage>().value()));
4288
                            break;
4289
                        case json_storage_kind::json_ref:
4290
                            cast<ref_storage>().value().merge(std::move(source));
4291
                            break;
4292
                        default:
4293
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4294
                    }
4295
                    break;
4296
                case json_storage_kind::json_ref:
4297
                    merge(std::move(source.cast<ref_storage>().value()));
4298
                    break;
4299
                default:
4300
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4301
           }
4302
        }
4303
4304
        void merge(object_iterator hint, const basic_json& source)
4305
        {
4306
            switch (source.storage_kind())
4307
            {
4308
                case json_storage_kind::empty_object:
4309
                    break;
4310
                case json_storage_kind::object:
4311
                    switch (storage_kind())
4312
                    {
4313
                        case json_storage_kind::empty_object:
4314
                            create_object_implicitly();
4315
                            cast<object_storage>().value().merge(hint, source.cast<object_storage>().value());
4316
                            break;
4317
                        case json_storage_kind::object:
4318
                            cast<object_storage>().value().merge(hint, source.cast<object_storage>().value());
4319
                            break;
4320
                        case json_storage_kind::json_ref:
4321
                            cast<ref_storage>().value().merge(hint, source);
4322
                            break;
4323
                        default:
4324
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4325
                    }
4326
                     break;
4327
                case json_storage_kind::json_ref:
4328
                    merge(hint, source.cast<ref_storage>().value());
4329
                    break;
4330
                default:
4331
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4332
            }
4333
        }
4334
4335
        void merge(object_iterator hint, basic_json&& source)
4336
        {
4337
            switch (source.storage_kind())
4338
            {
4339
                case json_storage_kind::empty_object:
4340
                    break;
4341
                case json_storage_kind::object:
4342
                    switch (storage_kind())
4343
                    {
4344
                        case json_storage_kind::empty_object:
4345
                            create_object_implicitly();
4346
                            cast<object_storage>().value().merge(hint, std::move(source.cast<object_storage>().value()));
4347
                            break;
4348
                        case json_storage_kind::object:
4349
                            cast<object_storage>().value().merge(hint, std::move(source.cast<object_storage>().value()));
4350
                            break;
4351
                        case json_storage_kind::json_ref:
4352
                            cast<ref_storage>().value().merge(hint, std::move(source));
4353
                            break;
4354
                        default:
4355
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4356
                    }
4357
                    break;
4358
                case json_storage_kind::json_ref:
4359
                    merge(hint, std::move(source.cast<ref_storage>().value()));
4360
                    break;
4361
                default:
4362
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4363
            }
4364
        }
4365
4366
        // merge_or_update
4367
4368
        void merge_or_update(const basic_json& source)
4369
        {
4370
            switch (source.storage_kind())
4371
            {
4372
                case json_storage_kind::empty_object:
4373
                    break;
4374
                case json_storage_kind::object:
4375
                    switch (storage_kind())
4376
                    {
4377
                        case json_storage_kind::empty_object:
4378
                            create_object_implicitly();
4379
                            cast<object_storage>().value().merge_or_update(source.cast<object_storage>().value());
4380
                            break;
4381
                        case json_storage_kind::object:
4382
                            cast<object_storage>().value().merge_or_update(source.cast<object_storage>().value());
4383
                            break;
4384
                        case json_storage_kind::json_ref:
4385
                            cast<ref_storage>().value().merge_or_update(source);
4386
                            break;
4387
                        default:
4388
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object"));
4389
                    }
4390
                    break;
4391
                case json_storage_kind::json_ref:
4392
                    merge_or_update(source.cast<ref_storage>().value());
4393
                    break;
4394
                default:
4395
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4396
            }
4397
        }
4398
4399
        void merge_or_update(basic_json&& source)
4400
        {
4401
            switch (source.storage_kind())
4402
            {
4403
                case json_storage_kind::empty_object:
4404
                    break;
4405
                case json_storage_kind::object:
4406
                    switch (storage_kind())
4407
                    {
4408
                        case json_storage_kind::empty_object:
4409
                            create_object_implicitly();
4410
                            cast<object_storage>().value().merge_or_update(std::move(source.cast<object_storage>().value()));
4411
                            break;
4412
                        case json_storage_kind::object:
4413
                            cast<object_storage>().value().merge_or_update(std::move(source.cast<object_storage>().value()));
4414
                            break;
4415
                        case json_storage_kind::json_ref:
4416
                            cast<ref_storage>().value().merge_or_update(std::move(source));
4417
                            break;
4418
                        default:
4419
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object"));
4420
                    }
4421
                    break;
4422
                case json_storage_kind::json_ref:
4423
                    merge_or_update(std::move(source.cast<ref_storage>().value()));
4424
                    break;
4425
                default:
4426
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4427
            }
4428
        }
4429
4430
        void merge_or_update(object_iterator hint, const basic_json& source)
4431
        {
4432
            switch (source.storage_kind())
4433
            {
4434
                case json_storage_kind::empty_object:
4435
                    break;
4436
                case json_storage_kind::object:
4437
                    switch (storage_kind())
4438
                    {
4439
                        case json_storage_kind::empty_object:
4440
                            create_object_implicitly();
4441
                            cast<object_storage>().value().merge_or_update(hint, source.cast<object_storage>().value());
4442
                            break;
4443
                        case json_storage_kind::object:
4444
                            cast<object_storage>().value().merge_or_update(hint, source.cast<object_storage>().value());
4445
                            break;
4446
                        case json_storage_kind::json_ref:
4447
                            cast<ref_storage>().value().merge_or_update(hint, source);
4448
                            break;
4449
                        default:
4450
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object"));
4451
                    }
4452
                    break;
4453
                case json_storage_kind::json_ref:
4454
                    merge_or_update(hint, source.cast<ref_storage>().value());
4455
                    break;
4456
                default:
4457
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4458
            }
4459
        }
4460
4461
        void merge_or_update(object_iterator hint, basic_json&& source)
4462
        {
4463
            switch (source.storage_kind())
4464
            {
4465
                case json_storage_kind::empty_object:
4466
                    break;
4467
                case json_storage_kind::object:
4468
                    switch (storage_kind())
4469
                    {
4470
                        case json_storage_kind::empty_object:
4471
                            create_object_implicitly();
4472
                            cast<object_storage>().value().merge_or_update(hint, std::move(source.cast<object_storage>().value()));
4473
                            break;
4474
                        case json_storage_kind::object:
4475
                            cast<object_storage>().value().merge_or_update(hint, std::move(source.cast<object_storage>().value()));
4476
                            break;
4477
                        case json_storage_kind::json_ref:
4478
                            cast<ref_storage>().value().merge_or_update(hint, std::move(source));
4479
                            break;
4480
                        default:
4481
                            JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge or update a value that is not an object"));
4482
                    }
4483
                    break;
4484
                case json_storage_kind::json_ref:
4485
                    merge_or_update(hint, std::move(source.cast<ref_storage>().value()));
4486
                    break;
4487
                default:
4488
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to merge a value that is not an object"));
4489
            }
4490
        }
4491
4492
        template <typename T>
4493
        object_iterator insert_or_assign(object_iterator hint, const string_view_type& name, T&& val)
4494
        {
4495
            switch (storage_kind())
4496
            {
4497
                case json_storage_kind::empty_object:
4498
                    create_object_implicitly();
4499
                    return object_iterator(cast<object_storage>().value().insert_or_assign(hint, name, std::forward<T>(val)));
4500
                case json_storage_kind::object:
4501
                    return object_iterator(cast<object_storage>().value().insert_or_assign(hint, name, std::forward<T>(val)));
4502
                case json_storage_kind::json_ref:
4503
                    return object_iterator(cast<ref_storage>().value().insert_or_assign(hint, name, std::forward<T>(val)));
4504
                default:
4505
                    JSONCONS_THROW(not_an_object(name.data(),name.length()));
4506
            }
4507
        }
4508
4509
        template <typename ... Args>
4510
        object_iterator try_emplace(object_iterator hint, const string_view_type& name, Args&&... args)
4511
        {
4512
            switch (storage_kind())
4513
            {
4514
                case json_storage_kind::empty_object:
4515
                    create_object_implicitly();
4516
                    return object_iterator(cast<object_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...));
4517
                case json_storage_kind::object:
4518
                    return object_iterator(cast<object_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...));
4519
                case json_storage_kind::json_ref:
4520
                    return object_iterator(cast<ref_storage>().value().try_emplace(hint, name, std::forward<Args>(args)...));
4521
                default:
4522
                    JSONCONS_THROW(not_an_object(name.data(),name.length()));
4523
            }
4524
        }
4525
4526
        template <typename T>
4527
        array_iterator insert(const_array_iterator pos, T&& val)
4528
        {
4529
            switch (storage_kind())
4530
            {
4531
                case json_storage_kind::array:
4532
                    return cast<array_storage>().value().insert(pos, std::forward<T>(val));
4533
                    break;
4534
                case json_storage_kind::json_ref:
4535
                    return cast<ref_storage>().value().insert(pos, std::forward<T>(val));
4536
                    break;
4537
                default:
4538
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4539
            }
4540
        }
4541
4542
        template <typename InputIt>
4543
        array_iterator insert(const_array_iterator pos, InputIt first, InputIt last)
4544
        {
4545
            switch (storage_kind())
4546
            {
4547
                case json_storage_kind::array:
4548
                    return cast<array_storage>().value().insert(pos, first, last);
4549
                    break;
4550
                case json_storage_kind::json_ref:
4551
                    return cast<ref_storage>().value().insert(pos, first, last);
4552
                    break;
4553
                default:
4554
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4555
            }
4556
        }
4557
4558
        template <typename InputIt>
4559
        void insert(InputIt first, InputIt last)
4560
        {
4561
            switch (storage_kind())
4562
            {
4563
                case json_storage_kind::empty_object:
4564
                    create_object_implicitly();
4565
                    cast<object_storage>().value().insert(first, last);
4566
                    break;
4567
                case json_storage_kind::object:
4568
                    cast<object_storage>().value().insert(first, last);
4569
                    break;
4570
                case json_storage_kind::json_ref:
4571
                    cast<ref_storage>().value().insert(first, last);
4572
                    break;
4573
                default:
4574
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an object"));
4575
            }
4576
        }
4577
4578
        template <typename InputIt>
4579
        void insert(sorted_unique_range_tag tag, InputIt first, InputIt last)
4580
        {
4581
            switch (storage_kind())
4582
            {
4583
                case json_storage_kind::empty_object:
4584
                    create_object_implicitly();
4585
                    cast<object_storage>().value().insert(tag, first, last);
4586
                    break;
4587
                case json_storage_kind::object:
4588
                    cast<object_storage>().value().insert(tag, first, last);
4589
                    break;
4590
                case json_storage_kind::json_ref:
4591
                    cast<ref_storage>().value().insert(tag, first, last);
4592
                    break;
4593
                default:
4594
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an object"));
4595
            }
4596
        }
4597
4598
        template <typename... Args> 
4599
        array_iterator emplace(const_array_iterator pos, Args&&... args)
4600
        {
4601
            switch (storage_kind())
4602
            {
4603
                case json_storage_kind::array:
4604
                    return cast<array_storage>().value().emplace(pos, std::forward<Args>(args)...);
4605
                    break;
4606
                case json_storage_kind::json_ref:
4607
                    return cast<ref_storage>().value().emplace(pos, std::forward<Args>(args)...);
4608
                default:
4609
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4610
            }
4611
        }
4612
4613
        template <typename... Args> 
4614
        basic_json& emplace_back(Args&&... args)
4615
        {
4616
            switch (storage_kind())
4617
            {
4618
                case json_storage_kind::array:
4619
                    return cast<array_storage>().value().emplace_back(std::forward<Args>(args)...);
4620
                case json_storage_kind::json_ref:
4621
                    return cast<ref_storage>().value().emplace_back(std::forward<Args>(args)...);
4622
                default:
4623
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4624
            }
4625
        }
4626
4627
        friend void swap(basic_json& a, basic_json& b) noexcept
4628
        {
4629
            a.swap(b);
4630
        }
4631
4632
        template <typename T>
4633
        void push_back(T&& val)
4634
        {
4635
            switch (storage_kind())
4636
            {
4637
                case json_storage_kind::array:
4638
                    cast<array_storage>().value().push_back(std::forward<T>(val));
4639
                    break;
4640
                case json_storage_kind::json_ref:
4641
                    cast<ref_storage>().value().push_back(std::forward<T>(val));
4642
                    break;
4643
                default:
4644
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4645
            }
4646
        }
4647
4648
        void push_back(basic_json&& val)
4649
51.9M
        {
4650
51.9M
            switch (storage_kind())
4651
51.9M
            {
4652
51.9M
                case json_storage_kind::array:
4653
51.9M
                    cast<array_storage>().value().push_back(std::move(val));
4654
51.9M
                    break;
4655
0
                case json_storage_kind::json_ref:
4656
0
                    cast<ref_storage>().value().push_back(std::move(val));
4657
0
                    break;
4658
0
                default:
4659
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4660
51.9M
            }
4661
51.9M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Line
Count
Source
4649
24.2M
        {
4650
24.2M
            switch (storage_kind())
4651
24.2M
            {
4652
24.2M
                case json_storage_kind::array:
4653
24.2M
                    cast<array_storage>().value().push_back(std::move(val));
4654
24.2M
                    break;
4655
0
                case json_storage_kind::json_ref:
4656
0
                    cast<ref_storage>().value().push_back(std::move(val));
4657
0
                    break;
4658
0
                default:
4659
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4660
24.2M
            }
4661
24.2M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >&&)
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::push_back(jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >&&)
Line
Count
Source
4649
27.6M
        {
4650
27.6M
            switch (storage_kind())
4651
27.6M
            {
4652
27.6M
                case json_storage_kind::array:
4653
27.6M
                    cast<array_storage>().value().push_back(std::move(val));
4654
27.6M
                    break;
4655
0
                case json_storage_kind::json_ref:
4656
0
                    cast<ref_storage>().value().push_back(std::move(val));
4657
0
                    break;
4658
0
                default:
4659
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Attempting to insert into a value that is not an array"));
4660
27.6M
            }
4661
27.6M
        }
4662
4663
        std::basic_string<char_type> to_string() const noexcept
4664
        {
4665
            using string_type2 = std::basic_string<char_type>;
4666
            string_type2 s;
4667
            basic_compact_json_encoder<char_type, jsoncons::string_sink<string_type2>> encoder(s);
4668
            dump(encoder);
4669
            return s;
4670
        }
4671
4672
        object_range_type object_range()
4673
3.00M
        {
4674
3.00M
            switch (storage_kind())
4675
3.00M
            {
4676
0
                case json_storage_kind::empty_object:
4677
0
                    return object_range_type(object_iterator(), object_iterator());
4678
3.00M
                case json_storage_kind::object:
4679
3.00M
                    return object_range_type(object_iterator(cast<object_storage>().value().begin()),
4680
3.00M
                                                  object_iterator(cast<object_storage>().value().end()));
4681
0
                case json_storage_kind::json_ref:
4682
0
                    return cast<ref_storage>().value().object_range();
4683
0
                default:
4684
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object"));
4685
3.00M
            }
4686
3.00M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::object_range()
Line
Count
Source
4673
3.00M
        {
4674
3.00M
            switch (storage_kind())
4675
3.00M
            {
4676
0
                case json_storage_kind::empty_object:
4677
0
                    return object_range_type(object_iterator(), object_iterator());
4678
3.00M
                case json_storage_kind::object:
4679
3.00M
                    return object_range_type(object_iterator(cast<object_storage>().value().begin()),
4680
3.00M
                                                  object_iterator(cast<object_storage>().value().end()));
4681
0
                case json_storage_kind::json_ref:
4682
0
                    return cast<ref_storage>().value().object_range();
4683
0
                default:
4684
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object"));
4685
3.00M
            }
4686
3.00M
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::object_range()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_range()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_range()
Unexecuted instantiation: jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::object_range()
4687
4688
        const_object_range_type object_range() const
4689
        {
4690
            switch (storage_kind())
4691
            {
4692
                case json_storage_kind::empty_object:
4693
                    return const_object_range_type(const_object_iterator(), const_object_iterator());
4694
                case json_storage_kind::object:
4695
                    return const_object_range_type(const_object_iterator(cast<object_storage>().value().begin()),
4696
                                                        const_object_iterator(cast<object_storage>().value().end()));
4697
                case json_storage_kind::json_const_ref:
4698
                    return cast<const_ref_storage>().value().object_range();
4699
                case json_storage_kind::json_ref:
4700
                    return cast<ref_storage>().value().object_range();
4701
                default:
4702
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an object"));
4703
            }
4704
        }
4705
4706
        array_range_type array_range()
4707
2.71M
        {
4708
2.71M
            switch (storage_kind())
4709
2.71M
            {
4710
2.71M
                case json_storage_kind::array:
4711
2.71M
                    return array_range_type(cast<array_storage>().value().begin(),
4712
2.71M
                        cast<array_storage>().value().end());
4713
0
                case json_storage_kind::json_ref:
4714
0
                    return cast<ref_storage>().value().array_range();
4715
0
                default:
4716
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4717
2.71M
            }
4718
2.71M
        }
jsoncons::basic_json<char, jsoncons::sorted_policy, std::__1::allocator<char> >::array_range()
Line
Count
Source
4707
69.9k
        {
4708
69.9k
            switch (storage_kind())
4709
69.9k
            {
4710
69.9k
                case json_storage_kind::array:
4711
69.9k
                    return array_range_type(cast<array_storage>().value().begin(),
4712
69.9k
                        cast<array_storage>().value().end());
4713
0
                case json_storage_kind::json_ref:
4714
0
                    return cast<ref_storage>().value().array_range();
4715
0
                default:
4716
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4717
69.9k
            }
4718
69.9k
        }
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::sorted_policy, std::__1::allocator<char> >::array_range()
Unexecuted instantiation: jsoncons::basic_json<wchar_t, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_range()
jsoncons::basic_json<char, jsoncons::order_preserving_policy, std::__1::allocator<char> >::array_range()
Line
Count
Source
4707
2.64M
        {
4708
2.64M
            switch (storage_kind())
4709
2.64M
            {
4710
2.64M
                case json_storage_kind::array:
4711
2.64M
                    return array_range_type(cast<array_storage>().value().begin(),
4712
2.64M
                        cast<array_storage>().value().end());
4713
0
                case json_storage_kind::json_ref:
4714
0
                    return cast<ref_storage>().value().array_range();
4715
0
                default:
4716
0
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4717
2.64M
            }
4718
2.64M
        }
4719
4720
        const_array_range_type array_range() const
4721
        {
4722
            switch (storage_kind())
4723
            {
4724
                case json_storage_kind::array:
4725
                    return const_array_range_type(cast<array_storage>().value().begin(),
4726
                        cast<array_storage>().value().end());
4727
                case json_storage_kind::json_const_ref:
4728
                    return cast<const_ref_storage>().value().array_range();
4729
                case json_storage_kind::json_ref:
4730
                    return cast<ref_storage>().value().array_range();
4731
                default:
4732
                    JSONCONS_THROW(json_runtime_error<std::domain_error>("Not an array"));
4733
            }
4734
        }
4735
4736
    private:
4737
4738
        void dump_noflush(basic_json_visitor<char_type>& visitor, std::error_code& ec) const
4739
        {
4740
            const ser_context context{};
4741
            switch (storage_kind())
4742
            {
4743
                case json_storage_kind::short_str:
4744
                case json_storage_kind::long_str:
4745
                    visitor.string_value(as_string_view(), tag(), context, ec);
4746
                    break;
4747
                case json_storage_kind::byte_str:
4748
                    if (tag() == semantic_tag::ext)
4749
                    {
4750
                        visitor.byte_string_value(as_byte_string_view(), ext_tag(), context, ec);
4751
                    }
4752
                    else
4753
                    {
4754
                        visitor.byte_string_value(as_byte_string_view(), tag(), context, ec);
4755
                    }
4756
                    break;
4757
                case json_storage_kind::half_float:
4758
                    visitor.half_value(cast<half_storage>().value(), tag(), context, ec);
4759
                    break;
4760
                case json_storage_kind::float64:
4761
                    visitor.double_value(cast<double_storage>().value(), 
4762
                                         tag(), context, ec);
4763
                    break;
4764
                case json_storage_kind::int64:
4765
                    visitor.int64_value(cast<int64_storage>().value(), tag(), context, ec);
4766
                    break;
4767
                case json_storage_kind::uint64:
4768
                    visitor.uint64_value(cast<uint64_storage>().value(), tag(), context, ec);
4769
                    break;
4770
                case json_storage_kind::boolean:
4771
                    visitor.bool_value(cast<bool_storage>().value(), tag(), context, ec);
4772
                    break;
4773
                case json_storage_kind::null:
4774
                    visitor.null_value(tag(), context, ec);
4775
                    break;
4776
                case json_storage_kind::empty_object:
4777
                    visitor.begin_object(0, tag(), context, ec);
4778
                    visitor.end_object(context, ec);
4779
                    break;
4780
                case json_storage_kind::object:
4781
                {
4782
                    visitor.begin_object(size(), tag(), context, ec);
4783
                    const object& o = cast<object_storage>().value();
4784
                    for (auto it = o.begin(); it != o.end(); ++it)
4785
                    {
4786
                        visitor.key(string_view_type(((*it).key()).data(),(*it).key().length()), context, ec);
4787
                        (*it).value().dump_noflush(visitor, ec);
4788
                    }
4789
                    visitor.end_object(context, ec);
4790
                    break;
4791
                }
4792
                case json_storage_kind::array:
4793
                {
4794
                    visitor.begin_array(size(), tag(), context, ec);
4795
                    const array& o = cast<array_storage>().value();
4796
                    for (const_array_iterator it = o.begin(); it != o.end(); ++it)
4797
                    {
4798
                        (*it).dump_noflush(visitor, ec);
4799
                    }
4800
                    visitor.end_array(context, ec);
4801
                    break;
4802
                }
4803
                case json_storage_kind::json_const_ref:
4804
                    return cast<const_ref_storage>().value().dump_noflush(visitor, ec);
4805
                case json_storage_kind::json_ref:
4806
                    return cast<ref_storage>().value().dump_noflush(visitor, ec);
4807
                default:
4808
                    break;
4809
            }
4810
        }
4811
4812
        write_result try_dump_noflush(basic_json_visitor<char_type>& visitor) const
4813
        {
4814
            std::error_code ec;
4815
            const ser_context context{};
4816
            switch (storage_kind())
4817
            {
4818
                case json_storage_kind::short_str:
4819
                case json_storage_kind::long_str:
4820
                    visitor.string_value(as_string_view(), tag(), context, ec);
4821
                    return ec ? write_result{unexpect, ec} : write_result{};
4822
                case json_storage_kind::byte_str:
4823
                    if (tag() == semantic_tag::ext)
4824
                    {
4825
                        visitor.byte_string_value(as_byte_string_view(), ext_tag(), context, ec);
4826
                    }
4827
                    else
4828
                    {
4829
                        visitor.byte_string_value(as_byte_string_view(), tag(), context, ec);
4830
                    }
4831
                    return ec ? write_result{unexpect, ec} : write_result{};
4832
                case json_storage_kind::half_float:
4833
                    visitor.half_value(cast<half_storage>().value(), tag(), context, ec);
4834
                    return ec ? write_result{unexpect, ec} : write_result{};
4835
                case json_storage_kind::float64:
4836
                    visitor.double_value(cast<double_storage>().value(), 
4837
                                         tag(), context, ec);
4838
                    return ec ? write_result{unexpect, ec} : write_result{};
4839
                case json_storage_kind::int64:
4840
                    visitor.int64_value(cast<int64_storage>().value(), tag(), context, ec);
4841
                    return ec ? write_result{unexpect, ec} : write_result{};
4842
                case json_storage_kind::uint64:
4843
                    visitor.uint64_value(cast<uint64_storage>().value(), tag(), context, ec);
4844
                    return ec ? write_result{unexpect, ec} : write_result{};
4845
                case json_storage_kind::boolean:
4846
                    visitor.bool_value(cast<bool_storage>().value(), tag(), context, ec);
4847
                    return ec ? write_result{unexpect, ec} : write_result{};
4848
                case json_storage_kind::null:
4849
                    visitor.null_value(tag(), context, ec);
4850
                    return ec ? write_result{unexpect, ec} : write_result{};
4851
                case json_storage_kind::empty_object:
4852
                    visitor.begin_object(0, tag(), context, ec);
4853
                    visitor.end_object(context, ec);
4854
                    return ec ? write_result{unexpect, ec} : write_result{};
4855
                case json_storage_kind::object:
4856
                {
4857
                    visitor.begin_object(size(), tag(), context, ec);
4858
                    const object& o = cast<object_storage>().value();
4859
                    for (auto it = o.begin(); it != o.end(); ++it)
4860
                    {
4861
                        visitor.key(string_view_type(((*it).key()).data(),(*it).key().length()), context, ec);
4862
                        (*it).value().dump_noflush(visitor, ec);
4863
                        if (JSONCONS_UNLIKELY(ec))
4864
                        {
4865
                            return write_result{unexpect, ec};
4866
                        }
4867
                    }
4868
                    visitor.end_object(context, ec);
4869
                    if (JSONCONS_UNLIKELY(ec))
4870
                    {
4871
                        return write_result{unexpect, ec};
4872
                    }
4873
                    return write_result{};
4874
                }
4875
                case json_storage_kind::array:
4876
                {
4877
                    visitor.begin_array(size(), tag(), context, ec);
4878
                    const array& o = cast<array_storage>().value();
4879
                    for (const_array_iterator it = o.begin(); it != o.end(); ++it)
4880
                    {
4881
                        auto r = (*it).try_dump_noflush(visitor);
4882
                        if (JSONCONS_UNLIKELY(!r))
4883
                        {
4884
                            return r;
4885
                        }
4886
                    }
4887
                    visitor.end_array(context, ec);
4888
                    if (JSONCONS_UNLIKELY(ec))
4889
                    {
4890
                        return write_result{unexpect, ec};
4891
                    }
4892
                    return write_result{};
4893
                }
4894
                case json_storage_kind::json_const_ref:
4895
                    return cast<const_ref_storage>().value().try_dump_noflush(visitor);
4896
                case json_storage_kind::json_ref:
4897
                    return cast<ref_storage>().value().try_dump_noflush(visitor);
4898
                default:
4899
                    JSONCONS_UNREACHABLE();
4900
                    break;
4901
            }
4902
        }
4903
4904
        friend std::basic_ostream<char_type>& operator<<(std::basic_ostream<char_type>& os, const basic_json& o)
4905
        {
4906
            o.dump(os);
4907
            return os;
4908
        }
4909
4910
        friend std::basic_istream<char_type>& operator>>(std::basic_istream<char_type>& is, basic_json& o)
4911
        {
4912
            json_decoder<basic_json> visitor;
4913
            basic_json_reader<char_type,stream_source<char_type>> reader(is, visitor);
4914
            reader.read_next();
4915
            reader.check_done();
4916
            if (!visitor.is_valid())
4917
            {
4918
                JSONCONS_THROW(json_runtime_error<std::runtime_error>("Failed to parse json stream"));
4919
            }
4920
            o = visitor.get_result();
4921
            return is;
4922
        }
4923
4924
        friend basic_json deep_copy(const basic_json& other)
4925
        {
4926
            switch (other.storage_kind())
4927
            {
4928
                case json_storage_kind::array:
4929
                {
4930
                    basic_json j(json_array_arg, other.tag(), other.get_allocator());
4931
                    j.reserve(other.size());
4932
4933
                    for (const auto& item : other.array_range())
4934
                    {
4935
                        j.push_back(deep_copy(item));
4936
                    }
4937
                    return j;
4938
                }
4939
                case json_storage_kind::object:
4940
                {
4941
                    basic_json j(json_object_arg, other.tag(), other.get_allocator());
4942
                    j.reserve(other.size());
4943
4944
                    for (const auto& item : other.object_range())
4945
                    {
4946
                        j.try_emplace(item.key(), deep_copy(item.value()));
4947
                    }
4948
                    return j;
4949
                }
4950
                case json_storage_kind::json_const_ref:
4951
                    return deep_copy(other.cast<const_ref_storage>().value());
4952
                case json_storage_kind::json_ref:
4953
                    return deep_copy(other.cast<ref_storage>().value());
4954
                default:
4955
                    return other;
4956
            }
4957
        }
4958
    };
4959
4960
    // operator==
4961
4962
    template <typename Json>
4963
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
4964
    operator==(const Json& lhs, const Json& rhs) noexcept
4965
    {
4966
        return lhs.compare(rhs) == 0;
4967
    }
4968
4969
    template <typename Json,typename T>
4970
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
4971
    operator==(const Json& lhs, const T& rhs) 
4972
    {
4973
        return lhs.compare(rhs) == 0;
4974
    }
4975
4976
    template <typename Json,typename T>
4977
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
4978
    operator==(const T& lhs, const Json& rhs) 
4979
    {
4980
        return rhs.compare(lhs) == 0;
4981
    }
4982
4983
    // operator!=
4984
4985
    template <typename Json>
4986
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
4987
    operator!=(const Json& lhs, const Json& rhs) noexcept
4988
    {
4989
        return lhs.compare(rhs) != 0;
4990
    }
4991
4992
    template <typename Json,typename T>
4993
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
4994
    operator!=(const Json& lhs, const T& rhs) 
4995
    {
4996
        return lhs.compare(rhs) != 0;
4997
    }
4998
4999
    template <typename Json,typename T>
5000
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5001
    operator!=(const T& lhs, const Json& rhs) 
5002
    {
5003
        return rhs.compare(lhs) != 0;
5004
    }
5005
5006
    // operator<
5007
5008
    template <typename Json>
5009
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
5010
    operator<(const Json& lhs, const Json& rhs) noexcept
5011
    {
5012
        return lhs.compare(rhs) < 0;
5013
    }
5014
5015
    template <typename Json,typename T>
5016
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5017
    operator<(const Json& lhs, const T& rhs) 
5018
    {
5019
        return lhs.compare(rhs) < 0;
5020
    }
5021
5022
    template <typename Json,typename T>
5023
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5024
    operator<(const T& lhs, const Json& rhs) 
5025
    {
5026
        return rhs.compare(lhs) > 0;
5027
    }
5028
5029
    // operator<=
5030
5031
    template <typename Json>
5032
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
5033
    operator<=(const Json& lhs, const Json& rhs) noexcept
5034
    {
5035
        return lhs.compare(rhs) <= 0;
5036
    }
5037
5038
    template <typename Json,typename T>
5039
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5040
    operator<=(const Json& lhs, const T& rhs) 
5041
    {
5042
        return lhs.compare(rhs) <= 0;
5043
    }
5044
5045
    template <typename Json,typename T>
5046
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5047
    operator<=(const T& lhs, const Json& rhs) 
5048
    {
5049
        return rhs.compare(lhs) >= 0;
5050
    }
5051
5052
    // operator>
5053
5054
    template <typename Json>
5055
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
5056
    operator>(const Json& lhs, const Json& rhs) noexcept
5057
    {
5058
        return lhs.compare(rhs) > 0;
5059
    }
5060
5061
    template <typename Json,typename T>
5062
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5063
    operator>(const Json& lhs, const T& rhs) 
5064
    {
5065
        return lhs.compare(rhs) > 0;
5066
    }
5067
5068
    template <typename Json,typename T>
5069
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5070
    operator>(const T& lhs, const Json& rhs) 
5071
    {
5072
        return rhs.compare(lhs) < 0;
5073
    }
5074
5075
    // operator>=
5076
5077
    template <typename Json>
5078
    typename std::enable_if<ext_traits::is_basic_json<Json>::value,bool>::type
5079
    operator>=(const Json& lhs, const Json& rhs) noexcept
5080
    {
5081
        return lhs.compare(rhs) >= 0;
5082
    }
5083
5084
    template <typename Json,typename T>
5085
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5086
    operator>=(const Json& lhs, const T& rhs) 
5087
    {
5088
        return lhs.compare(rhs) >= 0;
5089
    }
5090
5091
    template <typename Json,typename T>
5092
    typename std::enable_if<ext_traits::is_basic_json<Json>::value && std::is_convertible<T,Json>::value,bool>::type
5093
    operator>=(const T& lhs, const Json& rhs) 
5094
    {
5095
        return rhs.compare(lhs) <= 0;
5096
    }
5097
5098
    // swap
5099
5100
    template <typename Json>
5101
    void swap(typename Json::key_value_type& a,typename Json::key_value_type& b) noexcept
5102
    {
5103
        a.swap(b);
5104
    }
5105
5106
    using json = basic_json<char,sorted_policy,std::allocator<char>>;
5107
    using wjson = basic_json<wchar_t,sorted_policy,std::allocator<char>>;
5108
    using ojson = basic_json<char, order_preserving_policy, std::allocator<char>>;
5109
    using wojson = basic_json<wchar_t, order_preserving_policy, std::allocator<char>>;
5110
5111
    inline namespace literals {
5112
5113
    inline 
5114
    jsoncons::json operator ""_json(const char* s, std::size_t n)
5115
0
    {
5116
0
        return jsoncons::json::parse(jsoncons::json::string_view_type(s, n));
5117
0
    }
5118
5119
    inline 
5120
    jsoncons::wjson operator ""_json(const wchar_t* s, std::size_t n)
5121
0
    {
5122
0
        return jsoncons::wjson::parse(jsoncons::wjson::string_view_type(s, n));
5123
0
    }
5124
5125
    inline
5126
    jsoncons::ojson operator ""_ojson(const char* s, std::size_t n)
5127
0
    {
5128
0
        return jsoncons::ojson::parse(jsoncons::ojson::string_view_type(s, n));
5129
0
    }
5130
5131
    inline
5132
    jsoncons::wojson operator ""_ojson(const wchar_t* s, std::size_t n)
5133
0
    {
5134
0
        return jsoncons::wojson::parse(jsoncons::wojson::string_view_type(s, n));
5135
0
    }
5136
5137
    } // inline namespace literals
5138
5139
    #if defined(JSONCONS_HAS_POLYMORPHIC_ALLOCATOR)
5140
    namespace pmr {
5141
        template< typename CharT,typename Policy>
5142
        using basic_json = jsoncons::basic_json<CharT, Policy, std::pmr::polymorphic_allocator<char>>;
5143
        using json = basic_json<char,sorted_policy>;
5144
        using wjson = basic_json<wchar_t,sorted_policy>;
5145
        using ojson = basic_json<char, order_preserving_policy>;
5146
        using wojson = basic_json<wchar_t, order_preserving_policy>;
5147
    } // namespace pmr
5148
    #endif
5149
5150
5151
} // namespace jsoncons
5152
5153
#endif // JSONCONS_BASIC_JSON_HPP