operator<<,>>(std::experimental::filesystem::path)
Min standard notice:
Performs stream input or output on the path p. std::quoted is used so that spaces do not cause truncation when later read by stream input operator.
# Declarations
template< class CharT, class Traits >
std::basic_ostream<CharT,Traits>&
operator<<( std::basic_ostream<CharT,Traits>& os, const path& p );
(filesystem TS)
template< class CharT, class Traits >
std::basic_istream<CharT,Traits>&
operator>>( std::basic_istream<CharT,Traits>& is, path& p );
(filesystem TS)
# Parameters
os: stream to perform output onis: stream to perform input onp: path to insert or extract
# Example
This section is incompleteReason: no example