| 140 | |
| 141 | template< class CharT, class Traits, class Allocator > |
| 142 | std::basic_string_view<CharT, Traits> |
| 143 | to_string_view( std::basic_string<CharT, Traits, Allocator> const & s ) |
| 144 | { |
| 145 | return std::basic_string_view<CharT, Traits>( s.data(), s.size() ); |
| 146 | } |
| 147 | |
| 148 | // Literal operators sv and _sv: |
| 149 |