The Wayback Machine - https://web.archive.org/web/20170926021333/http://ja.cppreference.com/w/cpp/numeric/valarray/end2
名前空間
変種
操作

std::end(std::valarray)

提供: cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
ニューメリックスライブラリ
一般的な数学関数
浮動小数点環境
複素数
数値配列
擬似乱数生成
コンパイル時有理数演算(C++11)
汎用の数値演算
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
 
template<class T >
/*unspecified1*/ end( valarray<T>& v );
(1) (C++11およびそれ以降)
template<class T >
/*unspecified2*/ end(const valarray<T>& v );
(2) (C++11およびそれ以降)
std::beginvalarrayの専門化は、数値配列の最後の要素を越えて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.
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.
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.

目次

[編集]パラメータ

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.

[編集]例外

(なし)

[編集]

[編集]参照

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.

(関数テンプレート)[edit]
close