Is there a better way of appending a set to another set than iterating through each element ?
i have :
set foo ; set bar
You can insert a range:
bar.insert(foo.begin(), foo.end());