Namespaces
Variants

std:: hash <std::string_view> , std:: hash <std::wstring_view> , std:: hash <std::u8string_view> , std:: hash <std::u16string_view> , std:: hash <std::u32string_view>

From cppreference.net
ヘッダーで定義 <string_view>
template <> struct hash < std:: string_view > ;
(C++17以降)
template <> struct hash < std:: wstring_view > ;
(C++17以降)
template <> struct hash < std:: u8string_view > ;
(C++20以降)
template <> struct hash < std:: u16string_view > ;
(C++17以降)
template <> struct hash < std:: u32string_view > ;
(C++17以降)

ビューのハッシュ化のための各種ビュークラスに対する std::hash のテンプレート特殊化。

これらのハッシュは対応する std::basic_string クラスのハッシュと等しい:Sが標準basic_string型の一つで、SVが対応するstring_view型、sが型Sのオブジェクトである場合、 std:: hash < S > ( ) ( s ) == std:: hash < SV > ( ) ( SV ( s ) ) が成り立つ。

#include <iostream>
#include <string_view>
#include <unordered_set>
using namespace std::literals;
int main()
{
    std::cout << "\"A\"   #: " << std::hash<std::string_view>{}("A"sv) << '\n';
    std::cout << "L\"B\"  #: " << std::hash<std::wstring_view>{}(L"B"sv) << '\n';
    std::cout << "u8\"C\" #: " << std::hash<std::u8string_view>{}(u8"C"sv) << '\n';
    std::cout << "u\"D\"  #: " << std::hash<std::u16string_view>{}(u"D"sv) << '\n';
    std::cout << "U\"E\"  #: " << std::hash<std::u32string_view>{}(U"E"sv) << '\n';
    // std::hash for string_view family makes it possible to keep these view-types
    // in unordered_* associative containers, such as unordered_set. But ensure
    // the lifespan of referenced strings is no less than lifespan of the container,
    // i.e. no dangling references occurred.
    std::unordered_set stars{"Rigel"sv, "Capella"sv, "Vega"sv, "Arcturus"sv};
    for (std::string_view const& s : stars)
        std::cout << s << ' ';
    std::cout << '\n';
}

出力例:

"A"   #: 6919333181322027406
L"B"  #: 11959850520494268278
u8"C" #: 12432341034569643010
u"D"  #: 312659256970442235
U"E"  #: 18073225910249204957
Arcturus Vega Capella Rigel

関連項目

(C++11)
ハッシュ関数オブジェクト
(クラステンプレート)
文字列のハッシュサポート
(クラステンプレートの特殊化)