| 132 | // This can be useful in cases where you want to ensure parallelism |
| 133 | template <typename T> |
| 134 | Future<T> TransferAlways(Future<T> future) { |
| 135 | return DoTransfer(std::move(future), true); |
| 136 | } |
| 137 | |
| 138 | // Submit a callable and arguments for execution. Return a future that |
| 139 | // will return the callable's result value once. |
nothing calls this directly
no test coverage detected