MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore::thread::Receiver Concept Reference

Checks if messages can be received from something (e.g. More...

#include <traits.hpp>

Concept definition

template<typename T>
concept mtcore::thread::Receiver = requires(T &t) {
}
Represents a type that fulfills the "result" contract while having a success value of a specific type...
Checks if messages can be received from something (e.g.

Detailed Description

Checks if messages can be received from something (e.g.

channels) Anything that implements this concept should be non-blocking and may fail to receive

Definition at line 69 of file thread/mtcore_thread/traits.hpp.