#include "tensorstore/schema.h"
template <typename Func>
friend PipelineResultType<Schema, Func>
tensorstore::Schema::operator|(Schema schemaFunc&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.