LeviLamina
Loading...
Searching...
No Matches
ll::concepts::IsDispatcher Concept Reference

Concept definition

template<class T>
concept ll::concepts::IsDispatcher = requires(T t) {
typename std::remove_cvref_t<T>::storage_type;
typename std::remove_cvref_t<T>::listener_type;
t.storage;
t.call();
}
Definition Concepts.h:64