TensorStore
tensorstore::ChunkLayout::operator|
Initializing search
    tensorstore
    tensorstore
      • Tutorial
      • Indexing
      • API reference
      • API reference
        • Core
          • CBatch
          • CTransaction
          • CContext
          • CSchema
            • Methods
            • Types
            • Data members
            • Friend functions
            • Related Types
              • CChunkLayout
                • Types
                • Methods
                • Friend functions
                  • FApplyIndexTransform [transform]
                  • FApplyInverseIndexTransform
                  • FApplyIndexTransform [expr]
                  • Foperator|
                • Data members
              • CCodecSpec
              • CUnit
              • TDimensionUnitsVector
          • CSpec
          • CTensorStore
        • Indexing
        • Data types
        • Array
        • Key-value storage
        • Downsampling
        • Utilities
      • Building and Installing
      • Environment variables
      • JSON Spec
      • Index space
      • Schema
      • Context framework
      • Drivers
      • Key-Value Storage Layer
    #include "tensorstore/chunk_layout.h"
    template <typename Func>
    friend PipelineResultType<ChunkLayout, Func>
    tensorstore::ChunkLayout::operator|(ChunkLayout layout, Func&& func);

    “Pipeline” operator.

    In the expression x | y, if y is a function having signature Result<U>(T), then operator| applies y to the value of x, returning a Result<U>.

    See tensorstore::Result::operator| for examples.

    Back to top
    Previous tensorstore::ChunkLayout::ApplyIndexTransform[expr]
    Next tensorstore::ChunkLayout::IsOption