-
#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
, ify
is a function having signatureResult<U>(T)
, thenoperator|
appliesy
to the value ofx
, returning aResult<U>
.