4.4.1
Freundlich's C++ toolkit
Loading...
Searching...
No Matches
fcppt::concepts::invocable Concept Reference

Same as std::invcoable. More...

#include <invocable.hpp>

Concept definition

template<typename Function, typename... Args>
concept fcppt::concepts::invocable = requires(Function &&_function, Args && ..._args)
{
std::invoke(std::forward<Function>(_function), std::forward<Args>(_args)...);
}

Detailed Description

Same as std::invcoable.

This is not implemented in libc++ yet.