QSet: document removeIf

The docs were never added (unlike the docs for erase_if).

Change-Id: I7857c5eded68791ddfc4e6ce42a60d5736f5a438
Pick-to: 6.2 6.5 6.6
Fixes: QTBUG-115473
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Giuseppe D'Angelo 2023-07-24 18:29:37 +02:00
parent 8cc8bbb466
commit 76e650045e

View File

@ -886,3 +886,12 @@
from the set \a set. Returns the number of elements removed, if
any.
*/
/*! \fn template <class T> template <class Predicate> qsizetype QSet<T>::removeIf(Predicate pred)
\relates QSet
\since 6.1
Removes all elements for which the predicate \a pred returns true
from the set \a set. Returns the number of elements removed, if
any.
*/