TensorStore
tensorstore::ByteStridedPointer<T>::operator[]
Initializing search
    tensorstore
    tensorstore
      • Tutorial
      • Indexing
      • API reference
      • API reference
        • Core
        • Indexing
        • Data types
        • Array
          • EContainerKind
          • CByteStridedPointer
            • Types
            • Data members
            • Constructors
            • Accessors
            • Arithmetic operations
              • Foperator+=
              • Foperator-=
              • Foperator[]
              • Foperator- [pointer]
              • Foperator+
              • Foperator- [byte_offset]
          • CStridedLayout
          • 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
    #include "tensorstore/util/byte_strided_pointer.h"
    template <typename Integer>
      
    requires std::is_integral_v<Integer>
    T& tensorstore::ByteStridedPointer<T>::operator[](
        
    Integer byte_offset) const;

    Returns a reference to the element starting at the specified byte_offset relative to get().

    Back to top
    Previous tensorstore::ByteStridedPointer<T>::operator-=
    Next tensorstore::ByteStridedPointer<T>::operator-[pointer]