numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::base::concepts::invocable Concept Reference

Concept of functions invocable with given arguments. More...

#include <num_collect/base/concepts/invocable.h>

Concept definition

template<typename Func, typename... Args>
concept num_collect::base::concepts::invocable = requires(Func&& func, Args&&... args) {
std::invoke(std::forward<Func>(func), std::forward<Args>(args)...);
}
Concept of functions invocable with given arguments.
Definition invocable.h:36

Detailed Description

Concept of functions invocable with given arguments.

Template Parameters
FuncType of the function.
ArgsType of arguments.

Definition at line 36 of file invocable.h.