-
#include "tensorstore/tensorstore.h" -
template <typename Func>
PipelineResultType<const TensorStore&, Func>
tensorstore::TensorStore<ElementType, Rank, Mode>::operator|(
Func&& func) const&; -
template <typename Func>
PipelineResultType<TensorStore&&, Func>
tensorstore::TensorStore<ElementType, Rank, Mode>::operator|(
Func&& func) &&; “Pipeline” operator.
In the expression
x | y, ifyis a function having signatureResult<U>(T), thenoperator|appliesyto the value ofx, returning aResult<U>.