Sdílet prostřednictvím


array::operator – operátor

Vrátí hodnotu prvku na zadaném indexu.

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

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

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

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

Parametry

  • _Index
    Index.

  • _I
    Index.

Vrácená hodnota

Prvek na zadaném indexu.

Požadavky

Hlavička: amp.h

Obor názvů: Souběžnost

Viz také

Referenční dokumentace

array – třída