C
campesr
Hi!
I'd like to have a map with string keys, and wstring[] (arrays) values
in c++.
I thought map<string, wstring[]> would work out, but it doesn't (at
least I think so).
Additionally I'd like to know what's the easiest way to populate such
a map.
Would - mymap["somekey"] = {L"My Unicode value one", L"My other
unicode value"}; - work?
Many thanks in advance.
I'd like to have a map with string keys, and wstring[] (arrays) values
in c++.
I thought map<string, wstring[]> would work out, but it doesn't (at
least I think so).
Additionally I'd like to know what's the easiest way to populate such
a map.
Would - mymap["somekey"] = {L"My Unicode value one", L"My other
unicode value"}; - work?
Many thanks in advance.