27 typedef gdb::string_view::size_type csize_type;
28 typedef gdb::string_view::const_reference cref;
29 typedef gdb::string_view::reference ref;
32 const gdb::string_view str01(
"tamarindo, costa rica");
33 gdb::string_view str02(
"41st street beach, capitola, california");
34 gdb::string_view str03;
38 cref cref1 = str01[csz01 - 1];
46 cref cref3 = str01.at(csz01 - 1);
53 catch (gdb_exception& fail)