| 396 | |
| 397 | template <typename X> |
| 398 | Future<X> then(lambda::CallableOnce<Future<X>()> f) const |
| 399 | { |
| 400 | return then(lambda::CallableOnce<Future<X>(const T&)>( |
| 401 | lambda::partial(std::move(f)))); |
| 402 | } |
| 403 | |
| 404 | template <typename X> |
| 405 | Future<X> then(lambda::CallableOnce<X()> f) const |