| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/boost/type_erasure/ |
Upload File : |
// Boost.TypeErasure library
//
// Copyright 2011 Steven Watanabe
//
// 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)
//
// $Id: deduced.hpp 83393 2013-03-10 03:48:33Z steven_watanabe $
#ifndef BOOST_TYPE_ERASURE_DEDUCED_HPP_INCLUDED
#define BOOST_TYPE_ERASURE_DEDUCED_HPP_INCLUDED
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/identity.hpp>
#include <boost/mpl/set.hpp>
#include <boost/mpl/empty.hpp>
#include <boost/type_erasure/detail/get_placeholders.hpp>
#include <boost/type_erasure/placeholder.hpp>
namespace boost {
namespace type_erasure {
/**
* A placeholder for an associated type. The type corresponding
* to this placeholder is deduced by substituting placeholders
* in the arguments of the metafunction and then evaluating it.
*
* When using @ref deduced in a template context, if it is possible for
* Metafunction to contain no placeholders at all, use the nested type,
* to automatically evaluate it early as needed.
*/
template<class Metafunction>
struct deduced : ::boost::type_erasure::placeholder
{
typedef typename ::boost::mpl::eval_if<
::boost::mpl::empty<
typename ::boost::type_erasure::detail::get_placeholders<
Metafunction,
::boost::mpl::set0<>
>::type
>,
Metafunction,
::boost::mpl::identity<
::boost::type_erasure::deduced<Metafunction>
>
>::type type;
};
}
}
#endif