-
#include "tensorstore/index_space/index_transform.h"
-
template <typename Func>
friend PipelineResultType<IndexTransform&&, Func>
tensorstore::IndexTransform<InputRank, OutputRank, CKind>::operator|(
IndexTransform transform,
Func&& func); “Pipeline” operator.
In the expression
transform | func
, iffunc
is a function having signatureResult<U>(T)
, thenoperator|
appliesfunc
to the value oftransform
, returning a Result<U>.