summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qvarlengtharray.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qvarlengtharray.qdoc')
-rw-r--r--src/corelib/tools/qvarlengtharray.qdoc41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/corelib/tools/qvarlengtharray.qdoc b/src/corelib/tools/qvarlengtharray.qdoc
index 45eab98731..05e16d636e 100644
--- a/src/corelib/tools/qvarlengtharray.qdoc
+++ b/src/corelib/tools/qvarlengtharray.qdoc
@@ -141,6 +141,18 @@
\overload
*/
+/*! \fn T& QVarLengthArray::front()
+ \since 5.0
+
+ Same as first(). Provided for STL-compatibility.
+*/
+
+/*! \fn const T& QVarLengthArray::front() const
+ \since 5.0
+
+ \overload
+*/
+
/*! \fn T& QVarLengthArray::last()
Returns a reference to the last item in the array. The array must
@@ -155,7 +167,17 @@
\overload
*/
+/*! \fn T& QVarLengthArray::back()
+ \since 5.0
+ Same as last(). Provided for STL-compatibility.
+*/
+
+/*! \fn const T& QVarLengthArray::back() const
+ \since 5.0
+
+ \overload
+*/
/*! \fn bool QVarLengthArray::isEmpty() const
@@ -164,6 +186,12 @@
\sa size(), resize()
*/
+/*! \fn bool QVarLengthArray::empty() const
+ \since 5.0
+
+ Same as isEmpty(). Provided for STL-compatibility.
+*/
+
/*! \fn void QVarLengthArray::clear()
Removes all the elements from the array.
@@ -239,6 +267,12 @@
\sa removeLast()
*/
+/*!
+ \fn void QVarLengthArray::push_back(const T &t)
+ \since 5.0
+
+ Same as append(). Provided for STL-compatibility.
+*/
/*!
\fn inline void QVarLengthArray::removeLast()
@@ -250,6 +284,13 @@
*/
/*!
+ \fn void QVarLengthArray::pop_back()
+ \since 5.0
+
+ Same as removeLast(). Provided for STL-compatibility.
+*/
+
+/*!
\fn void QVarLengthArray::append(const T *buf, int size)
Appends \a size amount of items referenced by \a buf to this array.