Project
Loading...
Searching...
No Matches
o2::framework::is_partition Concept Reference

#include <Concepts.h>

Concept definition

template<typename T>
concept o2::framework::is_partition = requires(T t) {
&T::updatePlaceholders;
t.mFiltered.get();
&T::operator->;
requires std::same_as<decltype(t.dataframeChanged), bool>;
t.begin();
t.end();
t.size();
}

Detailed Description

  1. require partition declaration

Definition at line 302 of file Concepts.h.