All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
gears::concepts::Callable< T, Signature > Struct Template Reference

Checks if a function is callable with a certain signature. More...

Inherits gears::concepts::detail::is_callable< T, Signature >.

Detailed Description

template<typename T, typename Signature>
struct gears::concepts::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)>.

Template Parameters
TType to check.
SignatureSignature of the function to check.

Definition at line 109 of file function.hpp.