-
#include "tensorstore/index_space/index_domain.h"
-
template <typename Func>
friend PipelineResultType<IndexDomain&&, Func>
tensorstore::IndexDomain<Rank, CKind>::operator|(IndexDomain domain,
Func&& func); “Pipeline” operator.
In the expression
domain | func
, iffunc
is a function having signatureResult<U>(IndexDomain)
, thenoperator|
appliesfunc
to the value ofdomain
, returning aResult<U>
.