summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentfilter.cpp
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@digia.com>2015-03-30 15:31:55 +0200
committerTopi Reiniƶ <topi.reinio@digia.com>2015-04-07 14:38:29 +0000
commit2a6249c00ad66e7b670acb18d4b1eec7508ac3d9 (patch)
treec3a966789f2488e1e8646e34012bf1650847d609 /src/concurrent/qtconcurrentfilter.cpp
parent491b746473cf205cb08f64a2b1633a09d3c33ac4 (diff)
Doc: Qt Concurrent: Link to essential usage information
Functions under the QtConcurrent namespace used to be documented as header files, using the \headerfile command. These documents have been since converted to standard pages using the \page command, and the reference documentation for these functions now live in the namespace page only. However, the former pages contain useful usage information and code snippets, but they've not been linked to from anywhere. This change links to these pages from the module landing page, as well as from the function reference doc. Change-Id: Ia750d72d12503cec96ee2c9e202dd561e548cb24 Task-number: QTBUG-28977 Reviewed-by: Venugopal Shivashankar <venugopal.shivashankar@digia.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com>
Diffstat (limited to 'src/concurrent/qtconcurrentfilter.cpp')
-rw-r--r--src/concurrent/qtconcurrentfilter.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/concurrent/qtconcurrentfilter.cpp b/src/concurrent/qtconcurrentfilter.cpp
index 2c539b5766..4b3f2368b8 100644
--- a/src/concurrent/qtconcurrentfilter.cpp
+++ b/src/concurrent/qtconcurrentfilter.cpp
@@ -179,6 +179,8 @@
Calls \a filterFunction once for each item in \a sequence. If
\a filterFunction returns \c true, the item is kept in \a sequence;
otherwise, the item is removed from \a sequence.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -188,6 +190,8 @@
new Sequence of kept items. If \a filterFunction returns \c true, a copy of
the item is put in the new Sequence. Otherwise, the item will \e not
appear in the new Sequence.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -197,6 +201,8 @@
returns a new Sequence of kept items. If \a filterFunction returns \c true, a
copy of the item is put in the new Sequence. Otherwise, the item will
\e not appear in the new Sequence.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -213,6 +219,8 @@
QtConcurrent::UnorderedReduce. If \a reduceOptions is
QtConcurrent::OrderedReduce, \a reduceFunction is called in the order of
the original sequence.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -229,6 +237,8 @@
QtConcurrent::UnorderedReduce. If \a reduceOptions is
QtConcurrent::OrderedReduce, the \a reduceFunction is called in the order
of the original sequence.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -239,6 +249,8 @@
otherwise, the item is removed from \a sequence.
\note This function will block until all items in the sequence have been processed.
+
+ \sa {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -251,7 +263,7 @@
\note This function will block until all items in the sequence have been processed.
- \sa filtered()
+ \sa filtered(), {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -265,7 +277,7 @@
\note This function will block until the iterator reaches the end of the
sequence being processed.
- \sa filtered()
+ \sa filtered(), {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -285,7 +297,7 @@
\note This function will block until all items in the sequence have been processed.
- \sa filteredReduced()
+ \sa filteredReduced(), {Concurrent Filter and Filter-Reduce}
*/
/*!
@@ -306,5 +318,5 @@
\note This function will block until the iterator reaches the end of the
sequence being processed.
- \sa filteredReduced()
+ \sa filteredReduced(), {Concurrent Filter and Filter-Reduce}
*/