I have a std::set of std::string. I need the \"index\" or \"position\" of each string in the set, is this a meaningful concept in the context?
I guess find() will re
std::distance is what you need. You will want, I guess std::distance(set.begin(), find_result)
std::distance(set.begin(), find_result)