According to the documentation, the multiset data object contains property ordering.
As a result, for a multiset named, say, ms, it should be clear how to get the set element at a given location I such that 0 = I ms.size ().
I attempted to access these items as ms[i].
The language, however, argues that multiset does not accept subscripts.
How can I access element I in a multiset using syntax?