src/corelib/concurrent/qtconcurrentmap.cpp
changeset 33 3e2da88830cd
parent 18 2f34d5167611
child 37 758a864f9613
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
    68     function are passed to the reduce function.
    68     function are passed to the reduce function.
    69 
    69 
    70     \value UnorderedReduce Reduction is done in an arbitrary order.
    70     \value UnorderedReduce Reduction is done in an arbitrary order.
    71     \value OrderedReduce Reduction is done in the order of the
    71     \value OrderedReduce Reduction is done in the order of the
    72     original sequence.
    72     original sequence.
    73     \value SequentialReduce Reduction is done sequentally: only one
    73     \value SequentialReduce Reduction is done sequentially: only one
    74     thread will enter the reduce function at a time. (Parallel reduction
    74     thread will enter the reduce function at a time. (Parallel reduction
    75     might be supported in a future version of Qt Concurrent.)
    75     might be supported in a future version of Qt Concurrent.)
    76 */
    76 */
    77 
    77 
    78 /*!
    78 /*!