Boost.MultiIndex has a sequenced index feature:
https://www.boost.org/doc/libs/1_88_0/libs/multi_index/doc/reference/seq_indices.html
This allows elements to be accessed in insertion order.
It's useful for certain queue-like structures.
If multi_index_map supported it, I would be able to remove an element by a key (Hash or BTree), even if that element is in the middle of the queue.
Do you have any plans to support this feature?
Boost.MultiIndex has a sequenced index feature:
https://www.boost.org/doc/libs/1_88_0/libs/multi_index/doc/reference/seq_indices.html
This allows elements to be accessed in insertion order.
It's useful for certain queue-like structures.
If multi_index_map supported it, I would be able to remove an element by a key (Hash or BTree), even if that element is in the middle of the queue.
Do you have any plans to support this feature?