Mutexed 0.0.1
A header-only mutex-protected value wrapper for C++20.
Loading...
Searching...
No Matches
llh::mutexed::invokable_with Concept Reference

Checks the invokability of F with a value of type A. More...

#include <mutexed.hpp>

Concept definition

template<typename F, typename A>
concept llh::mutexed::invokable_with = requires (F&& f, A a) {
std::invoke(std::forward<F>(f), a);
}
Checks the invokability of F with a value of type A.
Definition mutexed.hpp:14

Detailed Description

Checks the invokability of F with a value of type A.

Definition at line 14 of file mutexed.hpp.