In the header file "std_function.h" there is this template class, I know what it does but I got curious about <_Res(_ArgsTypes...)>
. I've never seen anywhere something like that
template<typename _Signature>
class function
template<typename _Res, typename... _ArgTypes>
class function<_Res(_ArgTypes...)>
: public _Maybe_unary_or_binary_function<_Res, _ArgTypes...>,
private _Function_base {
//...body of class
};
Can anyone explain this to me?