It'd be nice if the following (and more) operators were supported in Boost for std::string, boost::string_ref and boost::string_view. Since the standard doesn't provide them (yet) for std::string_view having them for that type would be great as well.
s += sv;
s + sv;
sv + s;
sv + sv; ?