3

在 boost::proto 手册中,有一个匹配 std::transform<...> 类型终端的语法示例:

struct StdComplex
  : proto::terminal< std::complex< proto::_ > >  
{};

我想编写一个转换来处理 proto::_ 的类型。例如,当匹配一个 proto::terminal< std::complex< T > > 时,它返回一个 boost::shared_ptr < T > 。

这可能吗?

陈述我的问题的另一种方式是,如何使以下代码段起作用?

template<typename T>
struct Show : proto::callable  
{
    typedef T result_type;

    result_type operator()(T& v)
    {
        std::cout << "value = " << v << std::endl;
        return v;
    }
};


struct my_grammar
: proto::when<proto::terminal<proto::_ >, Show<??? what comes here ???>(proto::_value) >  
{};  
4

1 回答 1

3

您的 Show 转换将更容易作为多态函数对象处理:

struct Show : proto::callable  
{
  template<class Sig> struct result;

  template<class This, class T>
  struct result<This(T)>
  {
    typedef T type;
  };

  template<class T> T operator()(T const& v) const
  {
      std::cout << "value = " << v << std::endl;
      return v;
  }
};   

struct my_grammar
: proto::when<proto::terminal<proto::_ >, Show(proto::_value) >  
{};  

您对另一个问题的回答是:

struct to_shared : proto::callable  
{
  template<class Sig> struct result;

  template<class This, class T>
  struct result<This(T)>
  {
    typedef typename T::value_type base;
    typedef shared_ptr<base> type;
  };

  template<class T> 
  typename result<to_share(T)>::type operator()(T const& v) const
  {
    // stuff
  }
};


struct my_grammar
: proto::when<proto::terminal<complex<proto::_> >, to_shared(proto::_value) >  
{};  
于 2012-02-16T20:05:07.710 回答