Conversation

Replying to
as a programer, to me a set is an unordered collection of elements without duplicates. so a set of sets would be a collection of those. in practice i rarely need the "without duplicates" constraint
3
25
C++ definitely has a type when it comes to collections. std::set, std::multiset, std::unordered_set, std::unordered_multiset, std::map, std::multimap, std::unordered_map, std::unordered_multimap Rarely need more than unordered_set/unordered_map but it's neat having the rest.
1