init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
144
Telegram/ThirdParty/range-v3/include/range/v3/detail/adl_get.hpp
vendored
Normal file
144
Telegram/ThirdParty/range-v3/include/range/v3/detail/adl_get.hpp
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
// Range v3 library
|
||||
//
|
||||
// Copyright Casey Carter 2018
|
||||
//
|
||||
// Use, modification and distribution is subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying
|
||||
// file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//
|
||||
// Project home: https://github.com/ericniebler/range-v3
|
||||
|
||||
#ifndef RANGES_V3_DETAIL_ADL_GET_HPP
|
||||
#define RANGES_V3_DETAIL_ADL_GET_HPP
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
#include <concepts/concepts.hpp>
|
||||
|
||||
#include <range/v3/range_fwd.hpp>
|
||||
|
||||
#include <range/v3/detail/prologue.hpp>
|
||||
|
||||
namespace ranges
|
||||
{
|
||||
/// \cond
|
||||
namespace detail
|
||||
{
|
||||
namespace _adl_get_
|
||||
{
|
||||
template<typename>
|
||||
void get();
|
||||
|
||||
template<std::size_t I, typename TupleLike>
|
||||
constexpr auto adl_get(TupleLike && t) noexcept
|
||||
-> decltype(get<I>(static_cast<TupleLike &&>(t)))
|
||||
{
|
||||
return get<I>(static_cast<TupleLike &&>(t));
|
||||
}
|
||||
template<typename T, typename TupleLike>
|
||||
constexpr auto adl_get(TupleLike && t) noexcept
|
||||
-> decltype(get<T>(static_cast<TupleLike &&>(t)))
|
||||
{
|
||||
return get<T>(static_cast<TupleLike &&>(t));
|
||||
}
|
||||
} // namespace _adl_get_
|
||||
using _adl_get_::adl_get;
|
||||
} // namespace detail
|
||||
|
||||
namespace _tuple_wrapper_
|
||||
{
|
||||
template<typename TupleLike>
|
||||
struct forward_tuple_interface : TupleLike
|
||||
{
|
||||
forward_tuple_interface() = default;
|
||||
using TupleLike::TupleLike;
|
||||
#if !defined(__clang__) || __clang_major__ > 3
|
||||
CPP_member
|
||||
constexpr CPP_ctor(forward_tuple_interface)(TupleLike && base)( //
|
||||
noexcept(std::is_nothrow_move_constructible<TupleLike>::value) //
|
||||
requires move_constructible<TupleLike>)
|
||||
: TupleLike(static_cast<TupleLike &&>(base))
|
||||
{}
|
||||
CPP_member
|
||||
constexpr CPP_ctor(forward_tuple_interface)(TupleLike const & base)( //
|
||||
noexcept(std::is_nothrow_copy_constructible<TupleLike>::value) //
|
||||
requires copy_constructible<TupleLike>)
|
||||
: TupleLike(base)
|
||||
{}
|
||||
#else
|
||||
// Clang 3.x have a problem with inheriting constructors
|
||||
// that causes the declarations in the preceeding PP block to get
|
||||
// instantiated too early.
|
||||
template(typename B = TupleLike)(
|
||||
requires move_constructible<B>)
|
||||
constexpr forward_tuple_interface(TupleLike && base) noexcept(
|
||||
std::is_nothrow_move_constructible<TupleLike>::value)
|
||||
: TupleLike(static_cast<TupleLike &&>(base))
|
||||
{}
|
||||
template(typename B = TupleLike)(
|
||||
requires copy_constructible<B>)
|
||||
constexpr forward_tuple_interface(TupleLike const & base) noexcept(
|
||||
std::is_nothrow_copy_constructible<TupleLike>::value)
|
||||
: TupleLike(base)
|
||||
{}
|
||||
#endif
|
||||
|
||||
// clang-format off
|
||||
template<std::size_t I, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> &wb)
|
||||
(
|
||||
return detail::adl_get<I>(static_cast<U &>(wb))
|
||||
)
|
||||
template<std::size_t I, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> const &wb)
|
||||
(
|
||||
return detail::adl_get<I>(static_cast<U const &>(wb))
|
||||
)
|
||||
template<std::size_t I, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> &&wb)
|
||||
(
|
||||
return detail::adl_get<I>(static_cast<U &&>(wb))
|
||||
)
|
||||
template<std::size_t I, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> const &&wb)
|
||||
(
|
||||
return detail::adl_get<I>(static_cast<U const &&>(wb))
|
||||
)
|
||||
template<typename T, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> &wb)
|
||||
(
|
||||
return detail::adl_get<T>(static_cast<U &>(wb))
|
||||
)
|
||||
template<typename T, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> const &wb)
|
||||
(
|
||||
return detail::adl_get<T>(static_cast<U const &>(wb))
|
||||
)
|
||||
template<typename T, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> &&wb)
|
||||
(
|
||||
return detail::adl_get<T>(static_cast<U &&>(wb))
|
||||
)
|
||||
template<typename T, typename U = TupleLike>
|
||||
friend constexpr auto CPP_auto_fun(get)(
|
||||
forward_tuple_interface<TupleLike> const &&wb)
|
||||
(
|
||||
return detail::adl_get<T>(static_cast<U const &&>(wb))
|
||||
)
|
||||
// clang-format on
|
||||
};
|
||||
} // namespace _tuple_wrapper_
|
||||
/// \endcond
|
||||
} // namespace ranges
|
||||
|
||||
#include <range/v3/detail/epilogue.hpp>
|
||||
|
||||
#endif // RANGES_V3_DETAIL_ADL_GET_HPP
|
||||
Reference in New Issue
Block a user