std::end(std::valarray)

来自cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
Numerics的图书馆
常见的数学函数
浮点环境
复数
数字阵列
伪随机数生成
编译时合理的算法 (C++11)
通用的数值运算
原文:
Generic numeric operations
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
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返回一个迭代器的类型不明确,指的是一个过去的数字数组中的最后一个元素.
原文:
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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
1)
返回类型符合要求的可变RandomAccessIterator.
原文:
The return type meets the requirements of mutable RandomAccessIterator.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
2)
返回类型符合要求的不断RandomAccessIterator.
原文:
The return type meets the requirements of constant RandomAccessIterator.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

v -
数字阵列
原文:
a numeric array
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

迭代器一个过去的数字数组中的最后一个值.
原文:
Iterator to one past the last value in the numeric array.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 例外

(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 示例

[编辑] 另请参阅

专业std::begin
原文:
specializes std::begin
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数模板) [edit]