1
0
forked from boostorg/mp11
Files
boost_mp11/include/boost/mp11/utility.hpp

145 lines
3.7 KiB
C++
Raw Normal View History

2015-06-21 19:53:23 +03:00
#ifndef BOOST_MP11_UTILITY_HPP_INCLUDED
#define BOOST_MP11_UTILITY_HPP_INCLUDED
// Copyright 2015, 2017 Peter Dimov.
2015-06-21 19:53:23 +03:00
//
// 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
#include <boost/mp11/integral.hpp>
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
2015-06-21 19:53:23 +03:00
namespace boost
{
2017-03-15 21:23:15 +02:00
namespace mp11
{
2015-06-21 19:53:23 +03:00
// mp_identity
template<class T> struct mp_identity
{
using type = T;
};
// mp_identity_t
template<class T> using mp_identity_t = T;
2015-06-21 19:53:23 +03:00
// mp_inherit
template<class... T> struct mp_inherit: T... {};
// mp_if, mp_if_c
namespace detail
{
2017-05-18 14:59:46 +03:00
template<bool C, class T, class... E> struct mp_if_c_impl
{
};
2015-06-21 19:53:23 +03:00
2017-05-18 14:59:46 +03:00
template<class T, class... E> struct mp_if_c_impl<true, T, E...>
2015-06-21 19:53:23 +03:00
{
using type = T;
};
template<class T, class E> struct mp_if_c_impl<false, T, E>
{
using type = E;
};
} // namespace detail
2015-06-21 19:53:23 +03:00
2017-05-18 14:59:46 +03:00
template<bool C, class T, class... E> using mp_if_c = typename detail::mp_if_c_impl<C, T, E...>::type;
template<class C, class T, class... E> using mp_if = typename detail::mp_if_c_impl<static_cast<bool>(C::value), T, E...>::type;
// mp_valid
// implementation by Bruno Dutra (by the name is_evaluable)
namespace detail
{
template<template<class...> class F, class... T> struct mp_valid_impl
{
template<template<class...> class G, class = G<T...>> static mp_true check(int);
template<template<class...> class> static mp_false check(...);
using type = decltype(check<F>(0));
};
} // namespace detail
template<template<class...> class F, class... T> using mp_valid = typename detail::mp_valid_impl<F, T...>::type;
// mp_defer
namespace detail
{
template<template<class...> class F, class... T> struct mp_defer_impl
{
using type = F<T...>;
};
struct mp_no_type
{
};
} // namespace detail
template<template<class...> class F, class... T> using mp_defer = mp_if<mp_valid<F, T...>, detail::mp_defer_impl<F, T...>, detail::mp_no_type>;
2015-06-21 19:53:23 +03:00
// mp_eval_if, mp_eval_if_c
namespace detail
{
template<bool C, class T, template<class...> class F, class... U> struct mp_eval_if_c_impl;
template<class T, template<class...> class F, class... U> struct mp_eval_if_c_impl<true, T, F, U...>
{
using type = T;
};
template<class T, template<class...> class F, class... U> struct mp_eval_if_c_impl<false, T, F, U...>: mp_defer<F, U...>
{
};
} // namespace detail
template<bool C, class T, template<class...> class F, class... U> using mp_eval_if_c = typename detail::mp_eval_if_c_impl<C, T, F, U...>::type;
template<class C, class T, template<class...> class F, class... U> using mp_eval_if = typename detail::mp_eval_if_c_impl<static_cast<bool>(C::value), T, F, U...>::type;
2017-05-19 03:22:53 +03:00
template<class C, class T, class Q, class... U> using mp_eval_if_q = typename detail::mp_eval_if_c_impl<static_cast<bool>(C::value), T, Q::template fn, U...>::type;
2015-07-26 17:55:05 +03:00
// mp_quote
template<template<class...> class F> struct mp_quote
2015-07-26 17:55:05 +03:00
{
2017-05-19 03:22:53 +03:00
// the indirection through mp_defer works around the language inability
// to expand T... into a fixed parameter list of an alias template
2017-05-19 03:22:53 +03:00
template<class... T> using fn = typename mp_defer<F, T...>::type;
2015-07-26 17:55:05 +03:00
};
2017-05-19 15:37:49 +03:00
// mp_invoke
2017-05-19 16:22:41 +03:00
#if BOOST_WORKAROUND( BOOST_MSVC, < 1900 )
2017-05-19 15:37:49 +03:00
2015-07-26 17:55:05 +03:00
namespace detail
{
2017-05-19 15:37:49 +03:00
template<class Q, class... T> struct mp_invoke_impl: mp_defer<Q::template fn, T...> {};
2015-07-26 17:55:05 +03:00
} // namespace detail
template<class Q, class... T> using mp_invoke = typename detail::mp_invoke_impl<Q, T...>::type;
2015-07-26 17:55:05 +03:00
2017-05-19 16:22:41 +03:00
#elif BOOST_WORKAROUND( BOOST_GCC, < 50000 )
template<class Q, class... T> using mp_invoke = typename mp_defer<Q::template fn, T...>::type;
2017-05-19 15:37:49 +03:00
#else
template<class Q, class... T> using mp_invoke = typename Q::template fn<T...>;
#endif
2017-03-15 21:23:15 +02:00
} // namespace mp11
2015-06-21 19:53:23 +03:00
} // namespace boost
#endif // #ifndef BOOST_MP11_UTILITY_HPP_INCLUDED