#include "tensorstore/array.h"
template <typename... IndexType>
  
requires (!std::is_void_v<Element>) &&
          
 IsCompatibleFullIndexPack<static_rank, IndexType...>
Elementtensorstore::
    
Array<ElementTagType, Rank, OriginKind, LayoutContainerKind>::
    
operator()(IndexType... index) const;

Returns a reference to the element at the specified indices.

Template Parameters:
typename ...IndexType

Must be convertible without narrowing to Index.

Parameters:
IndexType... index

A pack of rank() indices.

Dchecks:

Contains(domain(), {index...})

Returns:

byte_strided_pointer()[layout()({index...})]