/*<- Copyright (c) 2016 Barrett Adair Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) ->*/ //[ args #include #include #include namespace ct = callable_traits; // all callable types in this example use these parameter types using expect = std::tuple; template void test(){ // this example shows how callable_traits::args // bevaves consistently for many different types using args = ct::args; static_assert(std::is_same{}, ""); } int main() { auto lamda = [](int, float&, const char*){}; using lam = decltype(lamda); test(); test(); test(); test(); struct foo; using pmf = void(foo::*)(int, float&, const char*); test(); test(); test(); test(); using function_ptr = void(*)(int, float&, const char*); test(); test(); test(); test(); using function_ref = void(&)(int, float&, const char*); test(); using function = void(int, float&, const char*); test(); using abominable = void(int, float&, const char*) const; test(); } //]