Loading...
Searching...
No Matches
bbm::concepts::gettable Concept Reference

std::get supported More...

#include <util.h>

Concept definition

template<typename T>
concept bbm::concepts::gettable = requires(T a)
{
{ std::get<0>(a) };
{ std::tuple_size<std::decay_t<T>>::value };
}
std::get supported
Definition: util.h:175
decltype(auto) value(T &&t)
return the value of an attribute, or if not an attribute the object
Definition: attribute_value.h:20

Detailed Description

std::get supported