std::begin(std::valarray)
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
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
返回一个迭代器的类型不明确的数值数组的第一个元素. 原文:
The specialization of std::begin for
valarray
returns an iterator of unspecified type referring to the first element in the numeric array. 1)
返回类型符合要求的可变
RandomAccessIterator
.原文:
The return type meets the requirements of mutable
RandomAccessIterator
.2)
返回类型符合要求的不断
RandomAccessIterator
.原文:
The return type meets the requirements of constant
RandomAccessIterator
.目录 |
[编辑] 参数
v | - | 数字阵列
|
[编辑] 返回值
迭代器中的数值数组的第一个值.
原文:
Iterator to the first value in the numeric array.
[编辑] 例外
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C++11) |
模板特化 std::end (函数模板) |