From 8780381532d8350c47a66e6588a569eec396b133 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Tue, 7 Apr 2015 15:51:47 +0200 Subject: [PATCH] QByteArray: begin()/end() are not \internal Docs copied from corresponding QString functions. Change-Id: Ia2b0f0521780246d82003a1fda539c132823b294 Reviewed-by: Olivier Goffart (Woboq GmbH) --- src/corelib/tools/qbytearray.cpp | 34 ++++++++++++++++++++++++-------- 1 file 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)