array::operator 运算符

返回指定索引处的元素。

value_type& operator[] (
   const index<_Rank>& _Index                     
) restrict(amp,cpu);
                     
const value_type& operator[] (
   const index<_Rank>& _Index                     
) const restrict(amp,cpu);
                     
auto operator[](
   int _I                     
) restrict(amp,cpu) -> decltype(details::_Array_projection_helper<_Value_type,_Rank>::_Project0((array<_Value_type,_Rank> *)NULL,_I));
                     
auto operator[](
   int _I                     
) const restrict(amp,cpu) -> decltype(details::_Array_projection_helper<_Value_type,_Rank>::_Project0((const array<_Value_type,_Rank> *)NULL,_I));

参数

  • _Index
    索引。

  • _I
    索引。

返回值

指定索引处的元素。

要求

标题: amp.h

命名空间: 并发

请参见

参考

array 类