| 479 | vector<Future<shared_ptr<Cache::Entry>>> futures; |
| 480 | |
| 481 | foreachvalue (const Option<Future<shared_ptr<Cache::Entry>>>& entry, |
| 482 | entries) { |
| 483 | if (entry.isSome()) { |
| 484 | futures.push_back(entry.get()); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | return await(futures) |
| 489 | .then(defer(self(), [=]() { |
nothing calls this directly
no test coverage detected