My Project
is_nothrow_invocable.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_NOTHROW_INVOCABLE_HPP
29 #define BSL_IS_NOTHROW_INVOCABLE_HPP
30 
31 #include "details/invoke_traits.hpp"
32 #include "bool_constant.hpp"
33 
34 namespace bsl
35 {
49  template<typename FUNC, typename... TN>
50  class is_nothrow_invocable final :
51  public bool_constant<details::invoke_traits<void, FUNC, TN...>::m_is_nothrow_invocable>
52  {};
53 }
54 
55 #endif
If the provided args form a nothrow callable, provides the member constant value equal to true....
Definition: is_nothrow_invocable.hpp:50
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45