Checks if a function is callable with a certain signature. More...
Inherits gears::concepts::detail::is_callable< T, Signature >.
A Binary concept that checks if a function can be called with a certain provided signature.
For example, void f(int)
can be met with Callable<T, void(int)>
.
T | Type to check. |
Signature | Signature of the function to check. |
Definition at line 109 of file function.hpp.