YACLib
C++ library for concurrent tasks execution
|
#include <yaclib/async/detail/when_all_impl.hpp>
#include <yaclib/async/detail/when_impl.hpp>
#include <yaclib/async/future.hpp>
#include <yaclib/config.hpp>
#include <yaclib/util/fail_policy.hpp>
#include <yaclib/util/order_policy.hpp>
#include <yaclib/util/type_traits.hpp>
#include <cstddef>
#include <iterator>
#include <utility>
Go to the source code of this file.
Namespaces | |
namespace | yaclib |
Functions | |
template<FailPolicy F = FailPolicy::FirstFail, OrderPolicy O = OrderPolicy::Fifo, typename It , typename T = typename std::iterator_traits<It>::value_type> | |
auto | yaclib::WhenAll (It begin, std::size_t count) |
Create Future which will be ready when all futures are ready. | |
template<FailPolicy F = FailPolicy::FirstFail, OrderPolicy O = OrderPolicy::Fifo, typename It , typename T = typename std::iterator_traits<It>::value_type> | |
YACLIB_INLINE auto | yaclib::WhenAll (It begin, It end) |
Create Future which will be ready when all futures are ready. | |
template<FailPolicy F = FailPolicy::FirstFail, OrderPolicy O = OrderPolicy::Fifo, typename V , typename... E> | |
auto | yaclib::WhenAll (FutureBase< V, E > &&... futures) |
Create Future which will be ready when all futures are ready. | |