In boost multi-index, can I verify whether a particular index type is ordered/not through meta programming?
There are the ordered indexes, hash indexes, sequence indexes etc. Can I find them out through meta programming?
Suppose there is a index like:
int main()
{
typedef multi_index_container<double> double_set;
return 0;
}
I want to know whether the double_set index is ordered or hashed or sequenced. Of course in this case, it is ordered.
Yes: