summaryrefslogtreecommitdiffstats
path: root/doc/src/qset.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/qset.qdoc')
-rw-r--r--doc/src/qset.qdoc12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/src/qset.qdoc b/doc/src/qset.qdoc
index 7fbf97a..2d12661 100644
--- a/doc/src/qset.qdoc
+++ b/doc/src/qset.qdoc
@@ -324,6 +324,16 @@
\sa insert(), remove(), find()
*/
+/*!
+ \fn bool QSet::contains(const QSet<T> &other) const
+ \since 4.6
+
+ Returns true if the set contains all items from the \a other set;
+ otherwise returns false.
+
+ \sa insert(), remove(), find()
+*/
+
/*! \fn QSet::const_iterator QSet::begin() const
Returns a const \l{STL-style iterator} positioned at the first
@@ -437,7 +447,7 @@
\fn QSet::const_iterator QSet::insert(const T &value)
Inserts item \a value into the set, if \a value isn't already
- in the set, and returns an iterator positioned at the inserted
+ in the set, and returns an iterator pointing at the inserted
item.
\sa operator<<(), remove(), contains()