Project
Loading...
Searching...
No Matches
o2::conf::Container Concept Reference

#include <ConfigurableParam.h>

Concept definition

template<typename T>
concept o2::conf::Container = !std::is_same_v<std::remove_cvref_t<T>, std::string> && requires(T t) {
typename T::value_type;
typename T::iterator;
{ t.begin() } -> std::same_as<typename T::iterator>;
{ t.end() } -> std::same_as<typename T::iterator>;
}

Detailed Description

Definition at line 149 of file ConfigurableParam.h.