Access information about result type or arguments from a function type. More...
#include <Metaprogramming.h>
Access information about result type or arguments from a function type.
Example: using A = function_traits<int (float, double)>::return_type // A == int using A = function_traits<int (float, double)>::parameter_types::tuple_type // A == tuple<float, double>
Definition at line 35 of file Metaprogramming.h.