array_view::operator Operator

Returns the element that is specified by the parameters.

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

Parameters

  • _Index
    The index.

  • _I
    The index.

Return Value

The element that is specified by the parameters.

Requirements

Header: amp.h

Namespace: Concurrency

See Also

Reference

array_view Class