concat
concat copied to clipboard
A string concatenation utility in a single header file for C++11.
So now that `std::pair` is supported, it would be great to be able to have different delimiters at the start/end of sequences in addition to between the elements of a...
Is it possible to implement is_parametrized_manipulator without having to list all the parametrized manipulators from [here](http://en.cppreference.com/w/cpp/header/iomanip)?
C++11 added get_money, put_money, get_time and put_time, but they are not yet handled as manipulators (this means, they will introduce a separator when a separator is noticeable).
``` cpp concat(1,2,3,std::endl); // error: requires 3 arguments, but 4 were provided ``` It looks like is not possible to infer between the char version of std::endl and wchar_t, and...