Is there some way to generate an initializer list algoritmically?
In the case I'm thinking of, I want to initialize a map<> to pair<key, constant> over all expected values of key.
Obviously i could write a loop to initialize after construction, but it would be nice if it could be done in one statement.