summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qbytearray.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2015-04-07 15:51:47 +0200
committerMarc Mutz <marc.mutz@kdab.com>2015-04-07 16:34:25 +0000
commit8780381532d8350c47a66e6588a569eec396b133 (patch)
tree1ba5e72feb36885476ddc0be36698f469336d852 /src/corelib/tools/qbytearray.cpp
parentdc6e964f636d36448259af0061f077c86c081d98 (diff)
QByteArray: begin()/end() are not \internal
Docs copied from corresponding QString functions. Change-Id: Ia2b0f0521780246d82003a1fda539c132823b294 Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
Diffstat (limited to 'src/corelib/tools/qbytearray.cpp')
-rw-r--r--src/corelib/tools/qbytearray.cpp34
1 files changed, 26 insertions, 8 deletions
diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp
index eb96757457..da5d00311a 100644
--- a/src/corelib/tools/qbytearray.cpp
+++ b/src/corelib/tools/qbytearray.cpp
@@ -869,44 +869,62 @@ static inline char qToLower(char c)
/*! \fn QByteArray::iterator QByteArray::begin()
- \internal
+ Returns an \l{STL-style iterators}{STL-style iterator} pointing to the first character in
+ the byte-array.
+
+ \sa constBegin(), end()
*/
/*! \fn QByteArray::const_iterator QByteArray::begin() const
- \internal
+ \overload begin()
*/
/*! \fn QByteArray::const_iterator QByteArray::cbegin() const
\since 5.0
- \internal
+ Returns a const \l{STL-style iterators}{STL-style iterator} pointing to the first character
+ in the byte-array.
+
+ \sa begin(), cend()
*/
/*! \fn QByteArray::const_iterator QByteArray::constBegin() const
- \internal
+ Returns a const \l{STL-style iterators}{STL-style iterator} pointing to the first character
+ in the byte-array.
+
+ \sa begin(), constEnd()
*/
/*! \fn QByteArray::iterator QByteArray::end()
- \internal
+ Returns an \l{STL-style iterators}{STL-style iterator} pointing to the imaginary character
+ after the last character in the byte-array.
+
+ \sa begin(), constEnd()
*/
/*! \fn QByteArray::const_iterator QByteArray::end() const
- \internal
+ \overload end()
*/
/*! \fn QByteArray::const_iterator QByteArray::cend() const
\since 5.0
- \internal
+ Returns a const \l{STL-style iterators}{STL-style iterator} pointing to the imaginary
+ character after the last character in the list.
+
+ \sa cbegin(), end()
*/
/*! \fn QByteArray::const_iterator QByteArray::constEnd() const
- \internal
+ Returns a const \l{STL-style iterators}{STL-style iterator} pointing to the imaginary
+ character after the last character in the list.
+
+ \sa constBegin(), end()
*/
/*! \fn void QByteArray::push_back(const QByteArray &other)