#include "tensorstore/index_space/transformed_array.h"
template <typename Func>
PipelineResultType<const TransformedArray&, Func>
tensorstore::TransformedArray<ElementTagType, Rank, LayoutCKind>::
operator|(Func&func) const&;
template <typename Func>
PipelineResultType<TransformedArray&&, Func>
tensorstore::TransformedArray<ElementTagType, Rank, LayoutCKind>::
operator|(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.