std::end(std::valarray)
提供: cppreference.com
![]() | このページは、Google 翻訳を使って英語版から機械翻訳されました。 翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
template<class T > /*unspecified1*/ end( valarray<T>& v ); | (1) | (C++11およびそれ以降) |
template<class T > /*unspecified2*/ end(const valarray<T>& v ); | (2) | (C++11およびそれ以降) |
std::begin用
valarray
の専門化は、数値配列の最後の要素を越えて1を参照する型指定のイテレータを返す. Original:
The specialization of std::begin for
valarray
returns an iterator of unspecified type referring to the one past the last element in the numeric array. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
戻り値の型は可変
RandomAccessIterator
の要件を満たしています.Original:
The return type meets the requirements of mutable
RandomAccessIterator
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
戻り値の型は定数
RandomAccessIterator
の要件を満たしています.Original:
The return type meets the requirements of constant
RandomAccessIterator
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集]パラメータ
v | - | 数値配列 Original: a numeric array The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集]値を返します
数値配列の最後の値、過去1にイテレータ.
Original:
Iterator to one past the last value in the numeric array.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集]例外
(なし)
[編集]例
This section is incomplete Reason: no example |
[編集]参照
(C++11) | std::beginを専門としています Original: specializes std::begin The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数テンプレート) |