👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/iterator/begin.md b/reference/iterator/begin.md index 75d79887c..e866c0373 100644 --- a/reference/iterator/begin.md +++ b/reference/iterator/begin.md @@ -29,6 +29,12 @@ namespace std { ## 概要 範囲から先頭要素へのイテレータを取得する。 +この関数は、メンバ関数版の`begin()`とちがい、組み込み配列に対しても使用できる。 + +- (1) : 非`const`のコンテナの、先頭要素へのイテレータを取得する +- (2) : `const`のコンテナの、先頭要素へのイテレータを取得する +- (3) : 組み込み配列の、先頭要素へのポインタを取得する + ## 戻り値 - (1) : `return c.begin();` ...