| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 | //     __ _____ _____ _____//  __|  |   __|     |   | |  JSON for Modern C++// |  |  |__   |  |  | | | |  version 3.11.3// |_____|_____|_____|_|___|  https://github.com/nlohmann/json//// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>// SPDX-FileCopyrightText: 2018 The Abseil Authors// SPDX-License-Identifier: MIT#pragma once#include <array> // array#include <cstddef> // size_t#include <type_traits> // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type#include <utility> // index_sequence, make_index_sequence, index_sequence_for#include <nlohmann/detail/macro_scope.hpp>NLOHMANN_JSON_NAMESPACE_BEGINnamespace detail{template<typename T>using uncvref_t = typename std::remove_cv<typename std::remove_reference<T>::type>::type;#ifdef JSON_HAS_CPP_14// the following utilities are natively available in C++14using std::enable_if_t;using std::index_sequence;using std::make_index_sequence;using std::index_sequence_for;#else// alias templates to reduce boilerplatetemplate<bool B, typename T = void>using enable_if_t = typename std::enable_if<B, T>::type;// The following code is taken from https://github.com/abseil/abseil-cpp/blob/10cb35e459f5ecca5b2ff107635da0bfa41011b4/absl/utility/utility.h// which is part of Google Abseil (https://github.com/abseil/abseil-cpp), licensed under the Apache License 2.0.//// START OF CODE FROM GOOGLE ABSEIL// integer_sequence//// Class template representing a compile-time integer sequence. An instantiation// of `integer_sequence<T, Ints...>` has a sequence of integers encoded in its// type through its template arguments (which is a common need when// working with C++11 variadic templates). `absl::integer_sequence` is designed// to be a drop-in replacement for C++14's `std::integer_sequence`.//// Example:////   template< class T, T... Ints >//   void user_function(integer_sequence<T, Ints...>);////   int main()//   {//     // user_function's `T` will be deduced to `int` and `Ints...`//     // will be deduced to `0, 1, 2, 3, 4`.//     user_function(make_integer_sequence<int, 5>());//   }template <typename T, T... Ints>struct integer_sequence{    using value_type = T;    static constexpr std::size_t size() noexcept    {        return sizeof...(Ints);    }};// index_sequence//// A helper template for an `integer_sequence` of `size_t`,// `absl::index_sequence` is designed to be a drop-in replacement for C++14's// `std::index_sequence`.template <size_t... Ints>using index_sequence = integer_sequence<size_t, Ints...>;namespace utility_internal{template <typename Seq, size_t SeqSize, size_t Rem>struct Extend;// Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency.template <typename T, T... Ints, size_t SeqSize>struct Extend<integer_sequence<T, Ints...>, SeqSize, 0>{    using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >;};template <typename T, T... Ints, size_t SeqSize>struct Extend<integer_sequence<T, Ints...>, SeqSize, 1>{    using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >;};// Recursion helper for 'make_integer_sequence<T, N>'.// 'Gen<T, N>::type' is an alias for 'integer_sequence<T, 0, 1, ... N-1>'.template <typename T, size_t N>struct Gen{    using type =        typename Extend < typename Gen < T, N / 2 >::type, N / 2, N % 2 >::type;};template <typename T>struct Gen<T, 0>{    using type = integer_sequence<T>;};}  // namespace utility_internal// Compile-time sequences of integers// make_integer_sequence//// This template alias is equivalent to// `integer_sequence<int, 0, 1, ..., N-1>`, and is designed to be a drop-in// replacement for C++14's `std::make_integer_sequence`.template <typename T, T N>using make_integer_sequence = typename utility_internal::Gen<T, N>::type;// make_index_sequence//// This template alias is equivalent to `index_sequence<0, 1, ..., N-1>`,// and is designed to be a drop-in replacement for C++14's// `std::make_index_sequence`.template <size_t N>using make_index_sequence = make_integer_sequence<size_t, N>;// index_sequence_for//// Converts a typename pack into an index sequence of the same length, and// is designed to be a drop-in replacement for C++14's// `std::index_sequence_for()`template <typename... Ts>using index_sequence_for = make_index_sequence<sizeof...(Ts)>;//// END OF CODE FROM GOOGLE ABSEIL#endif// dispatch utility (taken from ranges-v3)template<unsigned N> struct priority_tag : priority_tag < N - 1 > {};template<> struct priority_tag<0> {};// taken from ranges-v3template<typename T>struct static_const{    static JSON_INLINE_VARIABLE constexpr T value{};};#ifndef JSON_HAS_CPP_17    template<typename T>    constexpr T static_const<T>::value;#endiftemplate<typename T, typename... Args>inline constexpr std::array<T, sizeof...(Args)> make_array(Args&& ... args){    return std::array<T, sizeof...(Args)> {{static_cast<T>(std::forward<Args>(args))...}};}}  // namespace detailNLOHMANN_JSON_NAMESPACE_END
 |