[assign][cref_list_of] Creating anonymous list of pairs
Is there a way to generate a list of value pairs using ref_list_of or cref_list_of. Maybe such a list could be assigned to a map. Something like:
ref_list_of
On 22/09/2014 07:54, Aaron Levy wrote:
Is there a way to generate a list of value pairs using ref_list_of orcref_list_of. Maybe such a list could be assigned to a map. Something like:
ref_list_of
>("foo", "bar")("foo1", "bar1")...;
Did you try map_list_of or pair_list_of? I don't see how it would make sense to use references, as the pair object doesn't exist yet so you can't reference it.
On 21-09-2014 21:54, Aaron Levy wrote:
Is there a way to generate a list of value pairs using ref_list_of or cref_list_of. Maybe such a list could be assigned to a map. Something like:
ref_list_of
>("foo", "bar")("foo1", "bar1")...; or
std::map
names = ref_list_of >("foo", "bar")("foo1", "bar1")...;
I would have thought e.g. cref_list_of to work fine with std::pair
participants (3)
-
Aaron Levy
-
Gavin Lambert
-
Thorsten Ottosen