我有一个模拟 S 表达式的递归变体:
struct sexpr {
typedef boost::variant<
nil,
int,
double,
symbol,
string,
boost::recursive_wrapper<list<sexpr> >
> node_type;
node_type node;
};
我希望空列表始终由nil
(not list<sexpr>
) 表示。但是,我坚持执行 push_back() 访问者。当基础类型为nil
时,我希望它将该类型更改为list<sexpr>
并推回提供的值:
struct push_back_visitor: public boost::static_visitor<void>
{
push_back_visitor(const sexpr &arg): arg_(arg) {}
template <typename T>
void operator()(const T &value) const {
throw bad_visit();
}
void operator()(nil &val) const {
// how to change the underlying type to list<sexpr> here?
// lst.push_back(arg_);
}
void operator()(list<sexpr> &lst) const {
lst.push_back(arg_);
}
sexpr arg_;
};
有任何想法吗?