std::end(std::valarray)

来自cppreference.com
TranslationBot留言 | 贡献2012年10月26日 (五) 14:00的版本 (Translated from the English version using Google Translate)

<metanoindex/>

 
 
 
 
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返回一个迭代器的类型不明确,指的是一个过去的数字数组中的最后一个元素.
原文:
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.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。
1)
返回类型符合要求的可变Template:concept.
原文:
The return type meets the requirements of mutable Template:concept.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。
2)
返回类型符合要求的不断Template:concept.
原文:
The return type meets the requirements of constant Template:concept.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

参数

Template:param list begin Template:param list item Template:param list end

返回值

迭代器一个过去的数字数组中的最后一个值.
原文:
Iterator to one past the last value in the numeric array.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

例外

(无)
原文:
(none)
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

为例

另请参阅

Template:cpp/numeric/valarray/dcl list begin2