Skip to content
TensorStore
tensorstore::StridedLayout<Rank, OriginKind, CKind>::operator()[pack]
Initializing search
    tensorstore
    tensorstore
      • Tutorial
      • Indexing
      • API reference
      • API reference
        • Core
        • Indexing
        • Data types
        • Array
          • EContainerKind
          • CByteStridedPointer
          • CStridedLayout
            • Data members
            • Types
            • Methods
            • Constructors
            • Assignment
            • Accessors
            • Indexing
              • Foperator[]
              • Foperator() [vector]
              • Foperator() [pack]
                • Dchecks
            • Friend functions
            • Related Types
            • Related Constants
            • Related Functions
            • Broadcasting
          • CElementPointer
          • CArray
          • CTransformedArray
          • Transformation
          • Iteration
        • Key-value storage
        • Downsampling
        • Utilities
      • Building and Installing
      • Environment variables
      • JSON Spec
      • Index space
      • Schema
      • Context framework
      • Drivers
      • Key-Value Storage Layer
    • Dchecks
    #include "tensorstore/strided_layout.h"
    template <typename... IndexType>
      
    requires IsCompatibleFullIndexPack<static_rank, IndexType...>
    Index tensorstore::StridedLayout<Rank, OriginKind, CKind>::operator()(
        
    IndexType... index) const;

    Returns (*this)({index...}), or 0 if index is an empty pack.

    Dchecks:¶

    sizeof...(index) == rank()

    Back to top
    Previous tensorstore::StridedLayout<Rank, OriginKind, CKind>::operator()[vector]
    Next tensorstore::StridedLayout<Rank, OriginKind, CKind>::operator<<