Contents
Defined in File text.hpp
Join the strings in the range [ a, e ) using sep as separator.
Example usage:
std::vector<std::string> v{ "aap", "noot", "mies" }; assert(cif::join(v.begin(), v.end(), ", ") == "aap, noot, mies");