| 142 | |
| 143 | template<class callable_type, class return_type = std::invoke_result_t<callable_type>> |
| 144 | std::vector<concurrencpp::result<return_type>> bulk_submit(std::span<callable_type> callable_list) { |
| 145 | return do_bulk_submit<executor>(callable_list); |
| 146 | } |
| 147 | }; |
| 148 | } // namespace concurrencpp |
| 149 |
nothing calls this directly
no outgoing calls
no test coverage detected