| 133 | |
| 134 | template< class CharT, class Traits, class Allocator = std::allocator<CharT> > |
| 135 | std::basic_string<CharT, Traits, Allocator> |
| 136 | to_string( std::basic_string_view<CharT, Traits> v, Allocator const & a = Allocator() ) |
| 137 | { |
| 138 | return std::basic_string<CharT,Traits, Allocator>( v.begin(), v.end(), a ); |
| 139 | } |
| 140 | |
| 141 | template< class CharT, class Traits, class Allocator > |
| 142 | std::basic_string_view<CharT, Traits> |
no test coverage detected