I\'ve stumbled upon this problem: I can\'t seem to select the item at the index\' position in a normal std::set. Is this a bug in STD?
std::set
Below a simple ex
This is not a bug in the STD. There is no random access in a std::set. If you need random access by index, you can use std::vector
std::vector