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

Checks if something is closeable (e.g. More...

#include <traits.hpp>

Concept definition

template<typename T>
concept mtcore::thread::Closeable = requires(T &t) {
{ t.close() } -> std::same_as<void>;
}
Checks if something is closeable (e.g.

Detailed Description

Checks if something is closeable (e.g.

channels)

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