From a9934e8743c022b00a5ddcaa026d22b2bd385f0a Mon Sep 17 00:00:00 2001 From: ROCKTAKEY Date: Thu, 9 Nov 2023 02:13:09 +0900 Subject: [PATCH] =?UTF-8?q?`std::unordered=5Fmap`=E3=80=81`std::unordered?= =?UTF-8?q?=5Fset`=E3=81=B8=E3=81=AE=E3=83=AA=E3=83=B3=E3=82=AF=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tips/hashmap.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tips/hashmap.md b/tips/hashmap.md index 5b1e2025..4e91325b 100644 --- a/tips/hashmap.md +++ b/tips/hashmap.md @@ -8,6 +8,7 @@ - [基本的な使い方](#basic-usage) - [ユーザー定義型をキーにする(オーバーロード)](#user-defined-type-as-key-using-overload) - [ユーザー定義型をキーにする(ポリシー)](#user-defined-type-as-key-using-policy) +- [C++の国際標準規格上の類似する機能](#cpp-standard) ## 基本的な使い方 @@ -172,3 +173,6 @@ int main() ``` +## C++の国際標準規格上の類似する機能 +- [`std::unordered_map`](https://cpprefjp.github.io/reference/unordered_map/unordered_map.html) +- [`std::unordered_set`](https://cpprefjp.github.io/reference/unordered_set/unordered_set.html)