/usr/include/boost/hof
NameSizeModeActions
detail/-0755rm
alias.hpp55520644editdlrm
always.hpp42610644editdlrm
apply.hpp83630644editdlrm
apply_eval.hpp44280644editdlrm
arg.hpp31480644editdlrm
capture.hpp54190644editdlrm
combine.hpp38770644editdlrm
compose.hpp50420644editdlrm
config.hpp61490644editdlrm
construct.hpp87740644editdlrm
decay.hpp17900644editdlrm
decorate.hpp63290644editdlrm
eval.hpp24000644editdlrm
first_of.hpp71000644editdlrm
fix.hpp63140644editdlrm
flip.hpp26900644editdlrm
flow.hpp50600644editdlrm
fold.hpp50000644editdlrm
function.hpp31290644editdlrm
function_param_limit.hpp16580644editdlrm
identity.hpp18840644editdlrm
if.hpp33140644editdlrm
implicit.hpp40410644editdlrm
indirect.hpp32680644editdlrm
infix.hpp60430644editdlrm
is_invocable.hpp17060644editdlrm
is_unpackable.hpp33410644editdlrm
lambda.hpp64580644editdlrm
lazy.hpp87290644editdlrm
lift.hpp37520644editdlrm
limit.hpp38170644editdlrm
match.hpp33310644editdlrm
mutable.hpp19880644editdlrm
pack.hpp127470644editdlrm
partial.hpp83070644editdlrm
pipable.hpp62270644editdlrm
placeholders.hpp137990644editdlrm
proj.hpp75170644editdlrm
protect.hpp21450644editdlrm
repeat.hpp41840644editdlrm
repeat_while.hpp51540644editdlrm
result.hpp36440644editdlrm
returns.hpp86070644editdlrm
reveal.hpp121870644editdlrm
reverse_fold.hpp52710644editdlrm
rotate.hpp25760644editdlrm
static.hpp23950644editdlrm
tap.hpp21180644editdlrm
unpack.hpp55880644editdlrm
unpack_sequence.hpp18100644editdlrm
version.hpp6790644editdlrm
Edit: /usr/include/boost/hof/lift.hpp (3752B)
/*============================================================================= Copyright (c) 2015 Paul Fultz II lift.h Distributed under 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) ==============================================================================*/ #ifndef BOOST_HOF_GUARD_FUNCTION_LIFT_H #define BOOST_HOF_GUARD_FUNCTION_LIFT_H /// BOOST_HOF_LIFT /// ======== /// /// Description /// ----------- /// /// The macros `BOOST_HOF_LIFT` and `BOOST_HOF_LIFT_CLASS` provide a lift operator that /// will wrap a template function in a function object so it can be passed to /// higher-order functions. The `BOOST_HOF_LIFT` macro will wrap the function using /// a generic lambda. As such, it will not preserve `constexpr`. The /// `BOOST_HOF_LIFT_CLASS` can be used to declare a class that will wrap function. /// This will preserve `constexpr` and it can be used on older compilers that /// don't support generic lambdas yet. /// /// Limitation /// ---------- /// /// In C++14, `BOOST_HOF_LIFT` doesn't support `constexpr` due to using a generic /// lambda. Instead, `BOOST_HOF_LIFT_CLASS` can be used. In C++17, there is no such /// limitation. /// /// Synopsis /// -------- /// /// // Wrap the function in a generic lambda /// #define BOOST_HOF_LIFT(...) /// /// // Declare a class named `name` that will forward to the function /// #define BOOST_HOF_LIFT_CLASS(name, ...) /// /// Example /// ------- /// /// #include /// #include /// #include /// /// // Declare the class `max_f` /// BOOST_HOF_LIFT_CLASS(max_f, std::max); /// /// int main() { /// auto my_max = BOOST_HOF_LIFT(std::max); /// assert(my_max(3, 4) == std::max(3, 4)); /// assert(max_f()(3, 4) == std::max(3, 4)); /// } /// #include #include #include #include namespace boost { namespace hof { namespace detail { template struct lift_noexcept : F { BOOST_HOF_INHERIT_CONSTRUCTOR(lift_noexcept, F); template constexpr auto operator()(Ts&&... xs) const noexcept(decltype(std::declval()(BOOST_HOF_FORWARD(Ts)(xs)...)){}) -> decltype(std::declval()(BOOST_HOF_FORWARD(Ts)(xs)...)) { return F(*this)(BOOST_HOF_FORWARD(Ts)(xs)...);} }; template constexpr lift_noexcept make_lift_noexcept(F f, NoExcept) { return {f}; } } }} // namespace boost::hof #define BOOST_HOF_LIFT_IS_NOEXCEPT(...) std::integral_constant{} #if defined (_MSC_VER) #define BOOST_HOF_LIFT(...) (BOOST_HOF_STATIC_LAMBDA { BOOST_HOF_LIFT_CLASS(fit_local_lift_t, __VA_ARGS__); return fit_local_lift_t(); }()) #elif defined (__clang__) #define BOOST_HOF_LIFT(...) (boost::hof::detail::make_lift_noexcept( \ BOOST_HOF_STATIC_LAMBDA(auto&&... xs) \ -> decltype((__VA_ARGS__)(BOOST_HOF_FORWARD(decltype(xs))(xs)...)) \ { return (__VA_ARGS__)(BOOST_HOF_FORWARD(decltype(xs))(xs)...); }, \ BOOST_HOF_STATIC_LAMBDA(auto&&... xs) { return BOOST_HOF_LIFT_IS_NOEXCEPT((__VA_ARGS__)(BOOST_HOF_FORWARD(decltype(xs))(xs)...)); } \ )) #else #define BOOST_HOF_LIFT(...) (BOOST_HOF_STATIC_LAMBDA(auto&&... xs) BOOST_HOF_RETURNS((__VA_ARGS__)(BOOST_HOF_FORWARD(decltype(xs))(xs)...))) #endif #define BOOST_HOF_LIFT_CLASS(name, ...) \ struct name \ { \ template \ constexpr auto operator()(Ts&&... xs) const \ BOOST_HOF_RETURNS((__VA_ARGS__)(BOOST_HOF_FORWARD(Ts)(xs)...)) \ } #endif