What is the collection class correspondent to std::set?

  • Thread starter Thread starter Hyun-jik Bae
  • Start date Start date
H

Hyun-jik Bae

What is the collection class correspondent to std::set? I know Dictionary<>
roles as std::map...

Please reply. Thanks in advance.

Hyun-jik Bae
 
Hyun-jik Bae said:
What is the collection class correspondent to std::set? I know Dictionary<>
roles as std::map...

There isn't one, unfortunately. You can use a dictionary which maps
everything to the same value (or to itself), however.
 
Back
Top