![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtConcurrent More...
Typedefs | |
template<class Function, class ... Args> | |
using | InvokeResultType = typename InvokeResult<Function, Args...>::Type |
template<class ... Types> | |
using | DecayedTuple = std::tuple<std::decay_t<Types>...> |
Enumerations | |
enum | ThreadFunctionResult { ThrottleThread , ThreadFinished } |
enum class | FutureResult { Ignore } |
enum | { ReduceQueueStartLimit = 20 , ReduceQueueThrottleLimit = 30 } |
enum | ReduceOption { UnorderedReduce = 0x1 , OrderedReduce = 0x2 , SequentialReduce = 0x4 } |
This enum specifies the order of which results from the map or filter function are passed to the reduce function. More... |
Functions | |
bool | selectIteration (std::bidirectional_iterator_tag) |
bool | selectIteration (std::forward_iterator_tag) |
bool | selectIteration (std::random_access_iterator_tag) |
template<typename ThreadEngine> | |
ThreadEngineStarter< typename ThreadEngine::ResultType > | startThreadEngine (ThreadEngine *threadEngine) |
[qtconcurrentthreadengine-1] | |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< void > | filterInternal (QThreadPool *pool, Sequence &sequence, KeepFunctor &&keep, ReduceFunctor &&reduce) |
[QtConcurrent-1] | |
template<typename Sequence, typename KeepFunctor> | |
QFuture< void > | filter (QThreadPool *pool, Sequence &sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence. | |
template<typename Sequence, typename KeepFunctor> | |
QFuture< void > | filter (Sequence &sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence. | |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | filteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
QFuture< ResultType > | filteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | filteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Iterator, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isIterator_v< Iterator >, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | filteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor> | |
QFuture< typename std::decay_t< Sequence >::value_type > | filtered (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items. | |
template<typename Sequence, typename KeepFunctor> | |
QFuture< typename std::decay_t< Sequence >::value_type > | filtered (Sequence &&sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items. | |
template<typename Iterator, typename KeepFunctor> | |
QFuture< typename qValueType< Iterator >::value_type > | filtered (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items. | |
template<typename Iterator, typename KeepFunctor> | |
QFuture< typename qValueType< Iterator >::value_type > | filtered (Iterator begin, Iterator end, KeepFunctor &&keep) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items. | |
template<typename Sequence, typename KeepFunctor> | |
void | blockingFilter (QThreadPool *pool, Sequence &sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence. | |
template<typename Sequence, typename KeepFunctor> | |
void | blockingFilter (Sequence &sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence. | |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor> | |
ResultType | blockingFilteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
ResultType | blockingFilteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< KeepFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (Sequence &&sequence, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor> | |
ResultType | blockingFilteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename KeepFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Iterator, typename KeepFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isIterator_v< Iterator >, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingFilteredReduced (Iterator begin, Iterator end, KeepFunctor &&keep, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename KeepFunctor> | |
std::decay_t< Sequence > | blockingFiltered (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items. | |
template<typename Sequence, typename KeepFunctor> | |
std::decay_t< Sequence > | blockingFiltered (Sequence &&sequence, KeepFunctor &&keep) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items. | |
template<typename OutputSequence, typename Iterator, typename KeepFunctor> | |
OutputSequence | blockingFiltered (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&keep) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items. | |
template<typename OutputSequence, typename Iterator, typename KeepFunctor> | |
OutputSequence | blockingFiltered (Iterator begin, Iterator end, KeepFunctor &&keep) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items. | |
template<typename Iterator, typename KeepFunctor> | |
ThreadEngineStarter< typename qValueType< Iterator >::value_type > | startFiltered (QThreadPool *pool, Iterator begin, Iterator end, KeepFunctor &&functor) |
[QtConcurrent-2] | |
template<typename Sequence, typename KeepFunctor> | |
decltype(auto) | startFiltered (QThreadPool *pool, Sequence &&sequence, KeepFunctor &&functor) |
[QtConcurrent-3] | |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startFilteredReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ReduceOptions options) |
[QtConcurrent-4] | |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startFilteredReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ReduceOptions options) |
[QtConcurrent-5] | |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startFilteredReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ResultType &&initialValue, ReduceOptions options) |
[QtConcurrent-6] | |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startFilteredReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ResultType &&initialValue, ReduceOptions options) |
[QtConcurrent-7] | |
template<typename Sequence, typename MapFunctor> | |
QFuture< void > | map (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map) |
Calls function once for each item in sequence. | |
template<typename Sequence, typename MapFunctor> | |
QFuture< void > | map (Sequence &&sequence, MapFunctor &&map) |
Calls function once for each item in sequence. | |
template<typename Iterator, typename MapFunctor> | |
QFuture< void > | map (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end. | |
template<typename Iterator, typename MapFunctor> | |
QFuture< void > | map (Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end. | |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | mappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename MapFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename MapFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
QFuture< ResultType > | mappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
QFuture< ResultType > | mappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Iterator, typename MapFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isIterator_v< Iterator >, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
QFuture< ResultType > | mappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Sequence, typename MapFunctor> | |
QFuture< QtPrivate::MapResultType< Sequence, MapFunctor > > | mapped (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map) |
template<typename Sequence, typename MapFunctor> | |
QFuture< QtPrivate::MapResultType< Sequence, MapFunctor > > | mapped (Sequence &&sequence, MapFunctor &&map) |
template<typename Iterator, typename MapFunctor> | |
QFuture< QtPrivate::MapResultType< Iterator, MapFunctor > > | mapped (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map) |
template<typename Iterator, typename MapFunctor> | |
QFuture< QtPrivate::MapResultType< Iterator, MapFunctor > > | mapped (Iterator begin, Iterator end, MapFunctor &&map) |
template<typename Sequence, typename MapFunctor> | |
void | blockingMap (QThreadPool *pool, Sequence &&sequence, MapFunctor map) |
Calls function once for each item in sequence. | |
template<typename Sequence, typename MapFunctor> | |
void | blockingMap (Sequence &&sequence, MapFunctor &&map) |
Calls function once for each item in sequence. | |
template<typename Iterator, typename MapFunctor> | |
void | blockingMap (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end. | |
template<typename Iterator, typename MapFunctor> | |
void | blockingMap (Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end. | |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ResultType | blockingMappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename MapFunctor, typename ReduceFunctor, typename Sequence, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename MapFunctor, typename ReduceFunctor, typename Sequence, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type> | |
ResultType | blockingMappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename MapFunctor, typename ReduceFunctor, typename Sequence, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename MapFunctor, typename ReduceFunctor, typename Sequence, typename InitialValueType, std::enable_if_t< QtPrivate::isInvocable< MapFunctor, Sequence >::value, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (Sequence &&sequence, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ResultType | blockingMappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename Iterator, typename MapFunctor, typename ReduceFunctor, std::enable_if_t< QtPrivate::isIterator_v< Iterator >, int > = 0, typename ResultType = typename QtPrivate::ReduceResultTypeHelper<ReduceFunctor>::type, typename InitialValueType, std::enable_if_t< QtPrivate::isInitialValueCompatible_v< InitialValueType, ResultType >, int > = 0> | |
ResultType | blockingMappedReduced (Iterator begin, Iterator end, MapFunctor &&map, ReduceFunctor &&reduce, InitialValueType &&initialValue, ReduceOptions options=ReduceOptions(UnorderedReduce|SequentialReduce)) |
template<typename OutputSequence, typename InputSequence, typename MapFunctor> | |
OutputSequence | blockingMapped (QThreadPool *pool, InputSequence &&sequence, MapFunctor &&map) |
Calls function once for each item in sequence and returns an OutputSequence containing the results. | |
template<typename OutputSequence, typename InputSequence, typename MapFunctor> | |
OutputSequence | blockingMapped (InputSequence &&sequence, MapFunctor &&map) |
Calls function once for each item in sequence and returns an OutputSequence containing the results. | |
template<typename MapFunctor, typename InputSequence> | |
auto | blockingMapped (QThreadPool *pool, InputSequence &&sequence, MapFunctor &&map) |
template<typename MapFunctor, typename InputSequence> | |
auto | blockingMapped (InputSequence &&sequence, MapFunctor &&map) |
template<typename Sequence, typename Iterator, typename MapFunctor> | |
Sequence | blockingMapped (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end and returns a container with the results. | |
template<typename Sequence, typename Iterator, typename MapFunctor> | |
Sequence | blockingMapped (Iterator begin, Iterator end, MapFunctor &&map) |
Calls function once for each item from begin to end and returns a container with the results. | |
template<typename Iterator, typename MapFunctor> | |
auto | blockingMapped (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&map) |
template<typename Iterator, typename MapFunctor> | |
auto | blockingMapped (Iterator begin, Iterator end, MapFunctor &&map) |
template<typename Iterator, typename Functor> | |
ThreadEngineStarter< void > | startMap (QThreadPool *pool, Iterator begin, Iterator end, Functor &&functor) |
[qtconcurrentmapkernel-1] | |
template<typename T, typename Iterator, typename Functor> | |
ThreadEngineStarter< T > | startMapped (QThreadPool *pool, Iterator begin, Iterator end, Functor &&functor) |
[qtconcurrentmapkernel-2] | |
template<typename T, typename Sequence, typename Functor> | |
ThreadEngineStarter< T > | startMapped (QThreadPool *pool, Sequence &&sequence, Functor &&functor) |
[qtconcurrentmapkernel-3] | |
template<typename IntermediateType, typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ReduceOptions options) |
[qtconcurrentmapkernel-4] | |
template<typename IntermediateType, typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startMappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ReduceOptions options) |
[qtconcurrentmapkernel-5] | |
template<typename IntermediateType, typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startMappedReduced (QThreadPool *pool, Sequence &&sequence, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ResultType &&initialValue, ReduceOptions options) |
[qtconcurrentmapkernel-6] | |
template<typename IntermediateType, typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor> | |
ThreadEngineStarter< ResultType > | startMappedReduced (QThreadPool *pool, Iterator begin, Iterator end, MapFunctor &&mapFunctor, ReduceFunctor &&reduceFunctor, ResultType &&initialValue, ReduceOptions options) |
[qtconcurrentmapkernel-7] | |
template<class Function, class ... Args> | |
QTCONCURRENT_RUN_NODISCARD auto | run (QThreadPool *pool, Function &&f, Args &&...args) |
template<class Function, class ... Args> | |
QTCONCURRENT_RUN_NODISCARD auto | run (QThreadPool *pool, std::reference_wrapper< const Function > &&functionWrapper, Args &&...args) |
template<class Function, class ... Args> | |
QTCONCURRENT_RUN_NODISCARD auto | run (Function &&f, Args &&...args) |
template<class PromiseType, class Function, class ... Args> | |
QTCONCURRENT_RUN_NODISCARD auto | run (QThreadPool *pool, Function &&f, Args &&...args) |
template<class PromiseType, class Function, class ... Args> | |
QTCONCURRENT_RUN_NODISCARD auto | run (Function &&f, Args &&...args) |
template<class Task> | |
constexpr auto | task (Task &&t) |
\inmodule QtConcurrent
The QtConcurrent namespace provides high-level APIs that make it possible to write multi-threaded programs without using low-level threading primitives.
See the \l {Qt Concurrent} module documentation for an overview of available functions, or see below for detailed information on each function.
using QtConcurrent::DecayedTuple = std::tuple<std::decay_t<Types>...> |
Definition at line 103 of file qtconcurrentstoredfunctioncall.h.
using QtConcurrent::InvokeResultType = typename InvokeResult<Function, Args...>::Type |
Definition at line 100 of file qtconcurrentstoredfunctioncall.h.
anonymous enum |
Enumerator | |
---|---|
ReduceQueueStartLimit | |
ReduceQueueThrottleLimit |
Definition at line 50 of file qtconcurrentreducekernel.h.
|
strong |
Enumerator | |
---|---|
Ignore |
Definition at line 48 of file qtaskbuilder.h.
This enum specifies the order of which results from the map or filter function are passed to the reduce function.
\value UnorderedReduce Reduction is done in an arbitrary order. \value OrderedReduce Reduction is done in the order of the original sequence. \value SequentialReduce Reduction is done sequentially: only one thread will enter the reduce function at a time. (Parallel reduction might be supported in a future version of Qt Concurrent.)
Enumerator | |
---|---|
UnorderedReduce | |
OrderedReduce | |
SequentialReduce |
Definition at line 67 of file qtconcurrentreducekernel.h.
Enumerator | |
---|---|
ThrottleThread | |
ThreadFinished |
Definition at line 45 of file qtconcurrentthreadengine.h.
void QtConcurrent::blockingFilter | ( | QThreadPool * | pool, |
Sequence & | sequence, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, the item is kept in sequence; otherwise, the item is removed from sequence.
Note that this method doesn't have an overload working with iterators, because it invalidates the iterators of the sequence it operates on.
Definition at line 369 of file qtconcurrentfilter.h.
void QtConcurrent::blockingFilter | ( | Sequence & | sequence, |
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence.
If filterFunction returns true
, the item is kept in sequence; otherwise, the item is removed from sequence.
Note that this method doesn't have an overload working with iterators, because it invalidates the iterators of the sequence it operates on.
Definition at line 376 of file qtconcurrentfilter.h.
OutputSequence QtConcurrent::blockingFiltered | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items.
If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 707 of file qtconcurrentfilter.h.
OutputSequence QtConcurrent::blockingFiltered | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 699 of file qtconcurrentfilter.h.
std::decay_t< Sequence > QtConcurrent::blockingFiltered | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 682 of file qtconcurrentfilter.h.
std::decay_t< Sequence > QtConcurrent::blockingFiltered | ( | Sequence && | sequence, |
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items.
If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 690 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 594 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 665 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 548 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 570 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 533 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 419 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 495 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 384 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 461 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 443 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 516 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 398 of file qtconcurrentfilter.h.
ResultType QtConcurrent::blockingFilteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 477 of file qtconcurrentfilter.h.
void QtConcurrent::blockingMap | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end.
The function takes a reference to the item, so that any modifications done to the item will appear in the sequence which the iterators belong to.
Definition at line 420 of file qtconcurrentmap.h.
void QtConcurrent::blockingMap | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end.
All calls to function are invoked from the threads taken from the QThreadPool pool. The function takes a reference to the item, so that any modifications done to the item will appear in the sequence which the iterators belong to.
Definition at line 413 of file qtconcurrentmap.h.
void QtConcurrent::blockingMap | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor | function ) |
Calls function once for each item in sequence.
All calls to function are invoked from the threads taken from the QThreadPool pool. The function takes a reference to the item, so that any modifications done to the item will appear in sequence.
Definition at line 396 of file qtconcurrentmap.h.
void QtConcurrent::blockingMap | ( | Sequence && | sequence, |
MapFunctor && | function ) |
Calls function once for each item in sequence.
The function takes a reference to the item, so that any modifications done to the item will appear in sequence.
Definition at line 404 of file qtconcurrentmap.h.
OutputSequence QtConcurrent::blockingMapped | ( | InputSequence && | sequence, |
MapFunctor && | function ) |
Calls function once for each item in sequence and returns an OutputSequence containing the results.
The type of the results will match the type returned by the MapFunctor.
Definition at line 756 of file qtconcurrentmap.h.
auto QtConcurrent::blockingMapped | ( | InputSequence && | sequence, |
MapFunctor && | map ) |
Definition at line 774 of file qtconcurrentmap.h.
Sequence QtConcurrent::blockingMapped | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end and returns a container with the results.
You can specify the type of container as the a template argument, like this:
Definition at line 793 of file qtconcurrentmap.h.
auto QtConcurrent::blockingMapped | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map ) |
Definition at line 809 of file qtconcurrentmap.h.
OutputSequence QtConcurrent::blockingMapped | ( | QThreadPool * | pool, |
InputSequence && | sequence, | ||
MapFunctor && | function ) |
Calls function once for each item in sequence and returns an OutputSequence containing the results.
All calls to function are invoked from the threads taken from the QThreadPool pool. The type of the results will match the type returned by the MapFunctor.
Definition at line 748 of file qtconcurrentmap.h.
auto QtConcurrent::blockingMapped | ( | QThreadPool * | pool, |
InputSequence && | sequence, | ||
MapFunctor && | map ) |
Definition at line 764 of file qtconcurrentmap.h.
Sequence QtConcurrent::blockingMapped | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end and returns a container with the results.
All calls to function are invoked from the threads taken from the QThreadPool pool. You can specify the type of container as the a template argument, like this:
Definition at line 786 of file qtconcurrentmap.h.
auto QtConcurrent::blockingMapped | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map ) |
Definition at line 801 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 650 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 732 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 603 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 625 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 588 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 466 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 547 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 429 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 507 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 490 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 572 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 444 of file qtconcurrentmap.h.
ResultType QtConcurrent::blockingMappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 524 of file qtconcurrentmap.h.
QFuture< void > QtConcurrent::filter | ( | QThreadPool * | pool, |
Sequence & | sequence, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, the item is kept in sequence; otherwise, the item is removed from sequence.
Note that this method doesn't have an overload working with iterators, because it invalidates the iterators of the sequence it operates on.
Definition at line 36 of file qtconcurrentfilter.h.
QFuture< void > QtConcurrent::filter | ( | Sequence & | sequence, |
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence.
If filterFunction returns true
, the item is kept in sequence; otherwise, the item is removed from sequence.
Note that this method doesn't have an overload working with iterators, because it invalidates the iterators of the sequence it operates on.
Definition at line 43 of file qtconcurrentfilter.h.
QFuture< typename qValueType< Iterator >::value_type > QtConcurrent::filtered | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items.
If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 359 of file qtconcurrentfilter.h.
QFuture< typename qValueType< Iterator >::value_type > QtConcurrent::filtered | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item from begin to end and returns a new Sequence of kept items.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 350 of file qtconcurrentfilter.h.
QFuture< typename std::decay_t< Sequence >::value_type > QtConcurrent::filtered | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items.
All calls to filterFunction are invoked from the threads taken from the QThreadPool pool. If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 334 of file qtconcurrentfilter.h.
QFuture< typename std::decay_t< Sequence >::value_type > QtConcurrent::filtered | ( | Sequence && | sequence, |
KeepFunctor && | filterFunction ) |
Calls filterFunction once for each item in sequence and returns a new Sequence of kept items.
If filterFunction returns true
, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
Definition at line 341 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 249 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 317 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Iterator | begin, |
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 205 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 226 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 192 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 84 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 156 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 51 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 124 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 107 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 176 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 64 of file qtconcurrentfilter.h.
QFuture< ResultType > QtConcurrent::filteredReduced | ( | Sequence && | sequence, |
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 139 of file qtconcurrentfilter.h.
ThreadEngineStarter< void > QtConcurrent::filterInternal | ( | QThreadPool * | pool, |
Sequence & | sequence, | ||
KeepFunctor && | keep, | ||
ReduceFunctor && | reduce ) |
[QtConcurrent-1]
Definition at line 25 of file qtconcurrentfilter.h.
QFuture< void > QtConcurrent::map | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end.
The function takes a reference to the item, so that any modifications done to the item will appear in the sequence which the iterators belong to.
Definition at line 48 of file qtconcurrentmap.h.
QFuture< void > QtConcurrent::map | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | function ) |
Calls function once for each item from begin to end.
All calls to function are invoked from the threads taken from the QThreadPool pool. The function takes a reference to the item, so that any modifications done to the item will appear in the sequence which the iterators belong to.
Definition at line 42 of file qtconcurrentmap.h.
QFuture< void > QtConcurrent::map | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | function ) |
Calls function once for each item in sequence.
All calls to function are invoked from the threads taken from the QThreadPool pool. The function takes a reference to the item, so that any modifications done to the item will appear in sequence.
Definition at line 28 of file qtconcurrentmap.h.
QFuture< void > QtConcurrent::map | ( | Sequence && | sequence, |
MapFunctor && | function ) |
Calls function once for each item in sequence.
The function takes a reference to the item, so that any modifications done to the item will appear in sequence.
Definition at line 34 of file qtconcurrentmap.h.
QFuture< QtPrivate::MapResultType< Iterator, MapFunctor > > QtConcurrent::mapped | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map ) |
Definition at line 385 of file qtconcurrentmap.h.
QFuture< QtPrivate::MapResultType< Iterator, MapFunctor > > QtConcurrent::mapped | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map ) |
Definition at line 374 of file qtconcurrentmap.h.
QFuture< QtPrivate::MapResultType< Sequence, MapFunctor > > QtConcurrent::mapped | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map ) |
Definition at line 353 of file qtconcurrentmap.h.
QFuture< QtPrivate::MapResultType< Sequence, MapFunctor > > QtConcurrent::mapped | ( | Sequence && | sequence, |
MapFunctor && | map ) |
Definition at line 363 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 259 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 337 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Iterator | begin, |
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 215 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 236 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Iterator | begin, | ||
Iterator | end, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 201 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 88 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 162 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 55 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | QThreadPool * | pool, |
Sequence && | sequence, | ||
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 126 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 110 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
InitialValueType && | initialValue, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 186 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 68 of file qtconcurrentmap.h.
QFuture< ResultType > QtConcurrent::mappedReduced | ( | Sequence && | sequence, |
MapFunctor && | map, | ||
ReduceFunctor && | reduce, | ||
ReduceOptions | options = ReduceOptions(UnorderedReduce | SequentialReduce) ) |
Definition at line 141 of file qtconcurrentmap.h.
QTCONCURRENT_RUN_NODISCARD auto QtConcurrent::run | ( | Function && | f, |
Args &&... | args ) |
Definition at line 63 of file qtconcurrentrun.h.
QTCONCURRENT_RUN_NODISCARD auto QtConcurrent::run | ( | Function && | f, |
Args &&... | args ) |
Definition at line 81 of file qtconcurrentrun.h.
QTCONCURRENT_RUN_NODISCARD auto QtConcurrent::run | ( | QThreadPool * | pool, |
Function && | f, | ||
Args &&... | args ) |
Definition at line 44 of file qtconcurrentrun.h.
QTCONCURRENT_RUN_NODISCARD auto QtConcurrent::run | ( | QThreadPool * | pool, |
Function && | f, | ||
Args &&... | args ) |
Definition at line 72 of file qtconcurrentrun.h.
QTCONCURRENT_RUN_NODISCARD auto QtConcurrent::run | ( | QThreadPool * | pool, |
std::reference_wrapper< const Function > && | functionWrapper, | ||
Args &&... | args ) |
Definition at line 54 of file qtconcurrentrun.h.
|
inline |
Definition at line 131 of file qtconcurrentiteratekernel.h.
|
inline |
Definition at line 136 of file qtconcurrentiteratekernel.h.
|
inline |
Definition at line 141 of file qtconcurrentiteratekernel.h.
|
inline |
[QtConcurrent-2]
Definition at line 271 of file qtconcurrentfilterkernel.h.
|
inline |
[QtConcurrent-3]
Definition at line 279 of file qtconcurrentfilterkernel.h.
|
inline |
[QtConcurrent-5]
Definition at line 317 of file qtconcurrentfilterkernel.h.
|
inline |
[QtConcurrent-7]
Definition at line 361 of file qtconcurrentfilterkernel.h.
|
inline |
[QtConcurrent-4]
Definition at line 292 of file qtconcurrentfilterkernel.h.
|
inline |
[QtConcurrent-6]
Definition at line 336 of file qtconcurrentfilterkernel.h.
|
inline |
[qtconcurrentmapkernel-1]
Definition at line 177 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-2]
Definition at line 186 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-3]
Definition at line 217 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-5]
Definition at line 258 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-7]
Definition at line 304 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-4]
Definition at line 234 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentmapkernel-6]
Definition at line 278 of file qtconcurrentmapkernel.h.
|
inline |
[qtconcurrentthreadengine-1]
Definition at line 212 of file qtconcurrentthreadengine.h.
|
nodiscardconstexpr |
Definition at line 34 of file qtconcurrenttask.h.