Clio develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
util::async::SomeHandlerWith Concept Reference

Specifies the interface for a handler that can be invoked with the specified args. More...

#include <Concepts.hpp>

Concept definition

template<typename T, typename... Args>
concept util::async::SomeHandlerWith = requires(T fn) {
{ std::invoke(fn, std::declval<Args>()...) };
}
Specifies the interface for a handler that can be invoked with the specified args.
Definition Concepts.hpp:154

Detailed Description

Specifies the interface for a handler that can be invoked with the specified args.