迭代 boost::variant 中的类型
我正在使用 boost 变体来保存一些生成的类型,现在我的代码生成器创建一个包含类型的标头和一个能够保存它们的变体。在初始化时,我想迭代变体中允许的类型,而不是变体当前持有的类型。
我可以用变体来做到这一点吗?
I'm using a boost variant to hold some generated types, right now my code generator creates a header with the types and a variant capable of holding them. At initialization time, I'd like to iterate over the allowable types in the variant, not the types the variant is holding at the moment.
Can I do this with a variant?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
boost::variant
通过types
公开其类型,这是一个 MPL 列表。您可以使用 对 MPL 列表执行运行时操作mpl::for_each:boost::variant
exposes its types viatypes
, which is an MPL list. You can do runtime operations over MPL lists using mpl::for_each: