AsyncBerkeley
Asynchronous Berkeley sockets. Simple.
Loading...
Searching...
No Matches
io::DialogLike Concept Reference

Concept for types that behave like a dialog. More...

#include <io/detail/concepts.hpp>

Concept definition

template<typename Dialog>
concept io::DialogLike = requires(Dialog &dialog) {
typename Dialog::executor_type;
dialog.executor;
dialog.socket;
}
Concept for types that behave like a dialog.
Definition concepts.hpp:130

Detailed Description

Concept for types that behave like a dialog.

Template Parameters
DialogThe type to check.