summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qtconcurrentmap.cpp')
-rw-r--r--src/concurrent/qtconcurrentmap.cpp38
1 files changed, 25 insertions, 13 deletions
diff --git a/src/concurrent/qtconcurrentmap.cpp b/src/concurrent/qtconcurrentmap.cpp
index b60701e742..158bdb3887 100644
--- a/src/concurrent/qtconcurrentmap.cpp
+++ b/src/concurrent/qtconcurrentmap.cpp
@@ -1,7 +1,7 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtCore module of the Qt Toolkit.
**
@@ -10,9 +10,9 @@
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
@@ -23,8 +23,8 @@
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
+** As a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
@@ -229,6 +229,8 @@
Calls \a function once for each item in \a sequence. The \a function is
passed a reference to the item, so that any modifications done to the item
will appear in \a sequence.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -237,6 +239,8 @@
Calls \a function once for each item from \a begin to \a end. The
\a function is passed a reference to the item, so that any modifications
done to the item will appear in the sequence which the iterators belong to.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -245,6 +249,8 @@
Calls \a function once for each item in \a sequence and returns a future
with each mapped item as a result. You can use QFuture::const_iterator or
QFutureIterator to iterate through the results.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -253,6 +259,8 @@
Calls \a function once for each item from \a begin to \a end and returns a
future with each mapped item as a result. You can use
QFuture::const_iterator or QFutureIterator to iterate through the results.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -266,6 +274,8 @@
Note that while \a mapFunction is called concurrently, only one thread at a
time will call \a reduceFunction. The order in which \a reduceFunction is
called is determined by \a reduceOptions.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -281,6 +291,8 @@
\a reduceFunction is called is undefined.
\note QtConcurrent::OrderedReduce results in the ordered reduction.
+
+ \sa {Concurrent Map and Map-Reduce}
*/
/*!
@@ -292,7 +304,7 @@
\note This function will block until all items in the sequence have been processed.
- \sa map()
+ \sa map(), {Concurrent Map and Map-Reduce}
*/
/*!
@@ -305,7 +317,7 @@
\note This function will block until the iterator reaches the end of the
sequence being processed.
- \sa map()
+ \sa map(), {Concurrent Map and Map-Reduce}
*/
/*!
@@ -316,7 +328,7 @@
\note This function will block until all items in the sequence have been processed.
- \sa mapped()
+ \sa mapped(), {Concurrent Map and Map-Reduce}
*/
/*!
@@ -333,7 +345,7 @@
\note This function will block until the iterator reaches the end of the
sequence being processed.
- \sa mapped()
+ \sa mapped(), {Concurrent Map and Map-Reduce}
*/
/*!
@@ -348,7 +360,7 @@
\note This function will block until all items in the sequence have been processed.
- \sa mapped()
+ \sa mapped(), {Concurrent Map and Map-Reduce}
*/
/*!
@@ -364,5 +376,5 @@
\note This function will block until the iterator reaches the end of the
sequence being processed.
- \sa blockingMappedReduced()
+ \sa blockingMappedReduced(), {Concurrent Map and Map-Reduce}
*/