array_view::operator() 运算符

返回由一个参数或多个参数指定的元素的值。

value_type& operator() (
   const index<_Rank>& _Index
) const restrict(amp,cpu);

typename details::_Projection_result_type<_Value_type,_Rank>::_Result_type operator() (
   int _I
) const restrict(amp,cpu);

value_type& operator() (
   int _I0,
   int _I1
) const restrict(amp,cpu);

value_type& operator() (
   int _I0,
   int _I1,
   int _I2
) const restrict(amp,cpu);

typename details::_Projection_result_type<_Value_type,_Rank>::_Const_result_type operator() (
   int _I
) const restrict(amp,cpu);

参数

  • _Index
    元素的位置。

  • _I0
    第一个维中的索引。

  • _I1
    第二个维中的索引。

  • _I2
    第三个维中的索引。

  • _I
    元素的位置。

返回值

由参数指定的元素值。

要求

**标头:**amp.h

命名空间: 并发

请参见

参考

array_view 类