| 296 | */ |
| 297 | template <class Fn, class... Args> |
| 298 | auto execute(Fn&& f, Args&&... args) { |
| 299 | return async(std::forward<Fn>(f), std::forward<Args>(args)...); |
| 300 | } |
| 301 | |
| 302 | /* Helper functions for lists that consists purely of Tasks */ |
| 303 | Status wait_all(std::vector<Task>& tasks); |
no outgoing calls
no test coverage detected