| 132 | |
| 133 | template<class callable_type, class... argument_types> |
| 134 | auto submit(callable_type&& callable, argument_types&&... arguments) { |
| 135 | return do_submit<executor>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...); |
| 136 | } |
| 137 | |
| 138 | template<class callable_type> |
| 139 | void bulk_post(std::span<callable_type> callable_list) { |
nothing calls this directly
no outgoing calls
no test coverage detected