精神x3で色々な数字を文字列にパースしたいと思います。私はこのようにしようとしましたが、うまくいきません。
typedef x3::rule<class int_parser_id, std::string> int_parser_type;
const int_parser_type int_parser = "int_parser";
auto const int_parser_def = x3::int32;
x3::int32 パーサーを使用して Int を文字列に解析するにはどうすればよいですか?