| 344 | |
| 345 | template<class ...Rest> |
| 346 | constexpr auto operator()(Rest&&... rest) |
| 347 | noexcept(noexcept(binder_run(std::declval<binder_wrapper&>(), std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...))) |
| 348 | -> decltype(binder_run(std::declval<binder_wrapper&>(), std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...)) |
| 349 | { |
| 350 | return binder_run(*this, std::integral_constant<bool, Back>{}, index_sequence_for<Args...>{}, std::forward<Rest>(rest)...); |
| 351 | } |
| 352 | }; |
| 353 | |
| 354 | template<bool Back, class F, class... Args> |
nothing calls this directly
no test coverage detected