1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/// \file
// Range v3 library
//
// Copyright Eric Niebler 2013-present
//
// 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_FUNCTIONAL_BIND_HPP
#define RANGES_V3_FUNCTIONAL_BIND_HPP
#include <functional>
#include <type_traits>
#include <meta/meta.hpp>
#include <concepts/concepts.hpp>
#include <range/v3/range_fwd.hpp>
#include <range/v3/utility/static_const.hpp>
#include <range/v3/detail/prologue.hpp>
namespace ranges
{
/// \addtogroup group-functional
/// @{
template<typename T,
typename U = meta::if_<
std::is_lvalue_reference<T>,
std::reference_wrapper<meta::_t<std::remove_reference<T>>>, T &&>>
U bind_forward(meta::_t<std::remove_reference<T>> & t) noexcept
{
return static_cast<U>(t);
}
template<typename T>
T && bind_forward(meta::_t<std::remove_reference<T>> && t) noexcept
{
// This is to catch way sketchy stuff like: forward<int const &>(42)
static_assert(!std::is_lvalue_reference<T>::value, "You didn't just do that!");
return static_cast<T &&>(t);
}
template<typename T>
struct bind_element
: meta::if_c<RANGES_IS_SAME(detail::decay_t<T>, T), meta::id<T>,
bind_element<detail::decay_t<T>>>
{};
template<typename T>
struct bind_element<std::reference_wrapper<T>>
{
using type = T &;
};
template<typename T>
struct bind_element<reference_wrapper<T>>
{
using type = typename reference_wrapper<T>::reference;
};
template<typename T>
using bind_element_t = meta::_t<bind_element<T>>;
template<typename Bind>
struct protector
{
private:
Bind bind_;
public:
protector() = default;
protector(Bind b)
: bind_(std::move(b))
{}
// clang-format off
template<typename...Ts>
auto CPP_auto_fun(operator())(Ts &&...ts)
(
return bind_(static_cast<Ts &&>(ts)...)
)
/// \overload
template<typename...Ts>
auto CPP_auto_fun(operator())(Ts &&...ts) (const)
(
return bind_(static_cast<Ts &&>(ts)...)
)
// clang-format on
};
struct protect_fn
{
template(typename F)(
requires std::is_bind_expression<uncvref_t<F>>::value) //
protector<uncvref_t<F>> operator()(F && f) const
{
return {static_cast<F &&>(f)};
}
/// \overload
template(typename F)(
requires (!std::is_bind_expression<uncvref_t<F>>::value)) //
F operator()(F && f) const
{
return static_cast<F &&>(f);
}
};
/// Protect a callable so that it can be safely used in a bind expression without
/// accidentally becoming a "nested" bind.
/// \ingroup group-functional
/// \sa `protect_fn`
RANGES_INLINE_VARIABLE(protect_fn, protect)
/// @}
} // namespace ranges
#include <range/v3/detail/epilogue.hpp>
#endif
|