Files
poly_collection/include/boost/poly_collection/detail/is_invocable.hpp
T
joaquintides 8adeacb3f4 used library feature-test macros for std::is_(final|invocable) detection (#34)
* replaced std::is_final detection trick with __cpp_lib_is_final checking
* same with is_invocable
* updated (C)
* updated release notes
2026-07-17 11:51:25 +02:00

69 lines
1.4 KiB
C++

/* Copyright 2016-2026 Joaquin M Lopez Munoz.
* 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)
*
* See http://www.boost.org/libs/poly_collection for library home page.
*/
#ifndef BOOST_POLY_COLLECTION_DETAIL_IS_INVOCABLE_HPP
#define BOOST_POLY_COLLECTION_DETAIL_IS_INVOCABLE_HPP
#if defined(_MSC_VER)
#pragma once
#endif
#include <type_traits>
#if __cpp_lib_is_invocable>=201703L
namespace boost{
namespace poly_collection{
namespace detail{
template <typename F,typename... Args>
using is_invocable=std::is_invocable<F,Args...>;
template <typename R,typename F,typename... Args>
using is_invocable_r=std::is_invocable_r<R,F,Args...>;
} /* namespace poly_collection::detail */
} /* namespace poly_collection */
} /* namespace boost */
#else
#include <functional>
namespace boost{
namespace poly_collection{
namespace detail{
template <typename F,typename... Args>
struct is_invocable:
std::is_constructible<
std::function<void(Args...)>,
std::reference_wrapper<typename std::remove_reference<F>::type>
>
{};
template <typename R,typename F,typename... Args>
struct is_invocable_r:
std::is_constructible<
std::function<R(Args...)>,
std::reference_wrapper<typename std::remove_reference<F>::type>
>
{};
} /* namespace poly_collection::detail */
} /* namespace poly_collection */
} /* namespace boost */
#endif
#endif