| 1140 | ) |
| 1141 | > |
| 1142 | nsel_constexpr auto invoke( F && f, Args && ... args ) |
| 1143 | noexcept( noexcept( invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... ) ) ) |
| 1144 | -> decltype( invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... ) ) |
| 1145 | { |
| 1146 | return invoke_member_function_impl( std::forward< F >( f ), std::forward< Args >( args ) ... ); |
| 1147 | } |
| 1148 | |
| 1149 | template< typename F, typename... Args |
| 1150 | nsel_REQUIRES_T( |
no test coverage detected