std::valarray::shift
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
valarray<T> shift( int count ) const; |
||
返回一个新的valarray错开
count
元素的元素的位置的大小相同。每个元素的新位置是i−counti是以前的位置。元素中的价值转移是T().原文:
Returns a new valarray of the same size with elements whose positions are shifted by
count
elements. The new position of each element is i−count where i is the previous position. The value of shifted in elements is T().目录 |
[编辑] 参数
count | - | 位置转移元素
原文: number of positions to shift the elements by |
[编辑] 返回值
valarray的转移元素.....
原文:
The resulting valarray with shifted elements.
[编辑] 注释
该功能可以实现从std::valarray不同的返回类型。在这种情况下,替换类型具有以下属性:
原文:
The function can be implemented with the return type different from std::valarray. In this case, the replacement type has the following properties:
- const提供的所有std::valarray成员函数.原文:All const member functions of std::valarray are provided.
- std::valarray,std::slice_array,std::gslice_array,std::mask_array和std::indirect_array可以由更换型.原文:std::valarray, std::slice_array, std::gslice_array, std::mask_array and std::indirect_array can be constructed from the replacement type.
- 所有的函数接受一个参数的类型const std::valarray&也应接受替换类型.原文:All functions accepting a arguments of type const std::valarray& should also accept the replacement type.
- 接受两个参数的类型const std::valarray&应该接受所有的功能const std::valarray&的每个组合和置换型.原文:All functions accepting two arguments of type const std::valarray& should accept every combination of const std::valarray& and the replacement type.
-
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
元素的valarray的循环移位 原文: circular shift of the elements of the valarray (公共成员函数) |