has_varargs.hpp
Go to the documentation of this file.
66 * `std::false_type` is inherited by `has_varargs<T>` and is aliased by `typename has_varargs<T>::type`, except when one of the following criteria is met, in which case `std::true_type` would be similarly inherited and aliased:
67 * `T` is a function, function pointer, or function reference where the function's parameter list includes C-style variadics.
69 * `T` is a function object with a non-overloaded `operator()`, which has C-style variadics in the parameter list of its `operator()`.
70 * On compilers that support variable templates, `has_varargs_v<T>` is equivalent to `has_varargs<T>::value`.
typename std::remove_cv< typename std::remove_reference< T >::type >::type shallow_decay
Definition: utility.hpp:79
typename BOOST_CLBL_TRTS_DISJUNCTION(function_object< unwrap_reference< T > >, function< T >, pmf< T >, pmd< T >, default_callable_traits< T >)::traits traits
Definition: traits.hpp:25
constexpr BOOST_CLBL_TRAITS_INLINE_VAR bool has_varargs_v
Definition: has_varargs.hpp:52
Definition: add_member_const.hpp:14
typename detail::traits< detail::shallow_decay< T > >::has_varargs type
Definition: has_varargs.hpp:34