Hi,I'm curious about the decision taken to not allow string_ref to modify the data it represents.I'm modifying our JSON parser to use it, and sometimes I need to normalise a field touppercase or lowercase. Obviously I cannot now do this without making a copy of the normalised field somewhere with either std::string or boost::string_ref.