Следующий код не может быть создан на последних компиляторах (g++ - 5.3, clang++ - 3.7).
#include <map>
#include <functional>
#include <experimental/string_view>
void f()
{
using namespace std;
using namespace std::experimental;
map<string, int> m;
string s = "foo";
string_view sv(s);
m.find(sv);
}
Ошибка, возвращаемая clang:
error: no matching member function for call to 'find'
m.find(sv);
~~^~~~
Но не следует ли find
использовать сопоставимые типы?
В Cppreference упоминается следующая перегрузка:
template< class K > iterator find( const K& x );
То же самое происходит с boost::string_ref
.