使用 boost 多索引,我碰巧有以下类型的迭代器:
multi_index_set::nth_index<2>::type::iterator
我想摆脱nth_index<2>
类型的一部分并通过它的索引标签来引用它:
multi_index_set::tag_index<price_index>::type::iterator //tag_index is the functionality i'd like to have
这存在吗?
使用 boost 多索引,我碰巧有以下类型的迭代器:
multi_index_set::nth_index<2>::type::iterator
我想摆脱nth_index<2>
类型的一部分并通过它的索引标签来引用它:
multi_index_set::tag_index<price_index>::type::iterator //tag_index is the functionality i'd like to have
这存在吗?