How do you have a case insensitive insertion Or search of a string in std::set?
For example-
std::set s; s.insert(\"Hello\"); s.in
std::set offers the possibility of providing your own comparer (as do most std containers). You can then perform any type of comparison you like. Full example is available here