-
#include "tensorstore/array.h"
-
template <typename Func>
PipelineResultType<const Array&, Func>
tensorstore::Array<ElementTagType,
Rank,
OriginKind,
LayoutContainerKind>::operator|(Func&& func)
const&; -
template <typename Func>
PipelineResultType<Array&&, Func>
tensorstore::Array<ElementTagType,
Rank,
OriginKind,
LayoutContainerKind>::operator|(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>
.