Does c++ support either in the STL or there exists an external library supporting Arrays.asList()?
Typical usage
private ArrayList<String> lexeme = new ArrayList<String>(Arrays.asList(" ", ",", "(", ")", ";", "=", ".", "*", "-"));
I am using Visual Studio 11 (2012) and they have not included the c++11 feature Initializer lists
leaving me in a quandry as to initialize a vector of nine unique strings without
std::vector<std::string>::push_back("a");
std::vector<std::string>::push_back("b");
std::vector<std::string>::push_back("c");
. . .