std::begin(std::valarray)
提供: cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class T > /*unspecified1*/ begin( valarray<T>& v ); |
(1) | (C++11およびそれ以降) |
template< class T > /*unspecified2*/ begin( const valarray<T>& v ); |
(2) | (C++11およびそれ以降) |
std::begin用
valarray
の専門化は、数値配列の最初の要素を参照する型指定のイテレータを返す. Original:
The specialization of std::begin for
valarray
returns an iterator of unspecified type referring to the first 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. |
[編集] 値を返します
数値配列の最初の値に反復子.
Original:
Iterator to the first 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.
[編集] 例外
(なし)
Original:
(none)
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::endを専門としています Original: specializes std::end The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数テンプレート) |