36 typedef std::string_view::size_type csize_type;
37 typedef std::string_view::const_reference cref;
38 typedef std::string_view::reference ref;
40 const std::string_view str01(
"sailing grand traverse bay\n"
41 "\t\t\t from Elk Rapids to the point reminds me of miles");
44 std::ostringstream ostrs01;
48 VERIFY( ostrs01.str() == str01 );
50 catch(std::exception& fail)
55 std::string_view hello_world;
56 std::cout << hello_world;