C++ gems

From Thought dump
Revision as of 03:18, 26 August 2024 by Jwo (talk | contribs)
Jump to navigation Jump to search

String (un)quoting in standard library

See cppreference.com: std::quoted

#include <iomanip>

template< class CharT, class Traits>
/*unspecified*/ quoted( std::basic_string_view<CharT, Traits> s,
                        CharT delim = CharT('"'), CharT escape = CharT('\\') );

Random notes and thoughts.