We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 48790df + 4e3c6e6 commit 9ebc6dfCopy full SHA for 9ebc6df
src/std/hash.md
@@ -9,7 +9,7 @@ Where vectors store values by an integer index, `HashMap`s store values by key.
9
or any other type that implements the `Eq` and `Hash` traits.
10
More on this in the next section.
11
-->
12
-ベクタ型が値を整数のインデックスで保持するのに対し、`HashMap`ではキーで保持します。`HashMap`のキーはブーリアン、整数、文字列等の`Eq`あるいは`Hash`トレイトを保持する型なら何でもOKです。後でより詳しく見ていきます。
+ベクタ型が値を整数のインデックスで保持するのに対し、`HashMap`ではキーで保持します。`HashMap`のキーはブーリアン、整数、文字列等の`Eq`と`Hash`トレイトを保持する型なら何でもOKです。次のセクションでより詳しく見ていきます。
13
14
<!--
15
Like vectors, `HashMap`s are growable, but HashMaps can also shrink themselves
0 commit comments