Получение boost :: function arity во время компиляции? - PullRequest
0 голосов
/ 15 сентября 2010

Мне нужно принять решение в операторе BOOST_PP_IF на основе арности (счетчика параметров) объекта boost::function.Возможно ли это?

boost::function_types::function_arity делает то, что я ищу, но во время выполнения;Мне это нужно во время компиляции.

Ответы [ 3 ]

2 голосов
/ 15 сентября 2010
function_arity

template<typename F>
struct function_arity;

Header

#include <boost/function_types/function_arity.hpp>

F

    Callable builtin type 
function_arity<F>

    Function arity as MPL - Integral Constant 
function_arity<F>::value

    Constant value of the function arity 

обратите внимание, это постоянная времени компиляции

, с которой нужно начинать: http://www.boost.org/doc/libs/1_43_0/libs/mpl/doc/index.html

или использовать BOOST_PP_SEQ_FOR_EACH / BOOST_PP_REPEAT_FROM_TO для генерации условий if / else против function_arity<F>::value

1 голос
/ 15 сентября 2010

По какой-то причине мои добавления продолжают прерываться, но не в режиме предварительного просмотра = [

#include <ostream>  
#include <iostream>  
#include <boost/function.hpp>  

// Assume that you want to print out "Function is N-arity" for general case. But "nularity" for 0

template< int i >
struct DarkSide
{
template<class U>
void operator()(std::ostream& out, const U& u) { out << "Function is "<<i<<"-arity"<<u; }
void operator()(std::ostream& out, std::ostream& ( *pf )(std::ostream&) ) { out << "Function is "<<i<<"-arity"<<pf; }
};

template<>
struct DarkSide<0>
{
template<class U>
void operator()(std::ostream& out, const U& u) { out << "Function is nularity"<<u; }
void operator()(std::ostream& out, std::ostream& ( *pf )(std::ostream&) ) { out << "Function is nularity"<<pf; }
};

int main() {
typedef boost::function< void ( ) > vFv;
typedef boost::function< void ( int x ) > vFi;
DarkSide< vFv::arity >()(std::cout,"\n");
DarkSide< vFi::arity >()(std::cout,std::endl);
}
0 голосов
/ 12 июля 2013

Если все, что вам нужно, это прочитать артикль boost :: function, тогда вам не нужно делать столько работы:

#include <boost/function.hpp>
#include <iostream>
int main() {
  std::cout << boost::function<void()>::arity << std::endl;
  std::cout << boost::function<void(int)>::arity << std::endl;
  std::cout << boost::function<void(int, int)>::arity << std::endl;
}
...