#include <type_traits>
#include <utility>
Go to the source code of this file.
|
| | notstd |
| | Non-std smart pointer classes and functions.
|
| |
|
| template<typename... Ts> |
| using | notstd::void_t = typename make_void< Ts... >::type |
| | Alias for void, to help SFINAE work. More...
|
| |
| template<typename F > |
| using | notstd::first_argument_type = typename std::decay< typename function_traits< F >::template arg< 0 >::type >::type |
| |
| template<typename F > |
| using | notstd::second_argument_type = typename std::decay< typename function_traits< F >::template arg< 1 >::type >::type |
| |
| template<typename F > |
| using | notstd::return_type = typename std::decay< typename function_traits< F >::result_type >::type |
| |