我有这个典型的灵魂代码。
#include <boost/spirit/home/x3.hpp>
#include <boost/fusion/container/vector.hpp>
#include<iostream>
using std::cout;
int main(){
namespace x3 = boost::spirit::x3;
boost::fusion::vector<double, double> p;
x3::phrase_parse(
s.begin(), s.end(),
x3::double_ >> x3::double_, x3::space,
p
);
assert( boost::fusion::at_c<0>(p) == 1.2 );
assert( boost::fusion::at_c<1>(p) == 3.4 );
}
我想知道是否可以从语法中推断出预期属性的类型?
像
这样的东西using att_type = decltype(x3::double_ >> x3::double_)::result_type;
推断boost::fusion::vector<double, double>
。
我发现了这个http://boost-spirit.com/home/2010/01/31/what-is-the-attribute-type-exposed-by-a-parser/,但它不能与x3
一起使用,或者我没有包含正确的标题。