Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
QByteArrayView Class Reference

#include <qbytearrayview.h>

+ Collaboration diagram for QByteArrayView:

Public Types

typedef char storage_type
 
typedef const char value_type
 
typedef qptrdiff difference_type
 
typedef qsizetype size_type
 
typedef value_typereference
 
typedef value_typeconst_reference
 
typedef value_typepointer
 
typedef value_typeconst_pointer
 
typedef pointer iterator
 
typedef const_pointer const_iterator
 
typedef std::reverse_iterator< iteratorreverse_iterator
 
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 

Public Member Functions

constexpr QByteArrayView () noexcept
 
constexpr QByteArrayView (std::nullptr_t) noexcept
 
template<typename Byte , if_compatible_byte< Byte > = true>
constexpr QByteArrayView (const Byte *data, qsizetype len)
 
template<typename Byte , if_compatible_byte< Byte > = true>
constexpr QByteArrayView (const Byte *first, const Byte *last)
 
template<typename Pointer , if_compatible_pointer< Pointer > = true>
constexpr QByteArrayView (const Pointer &data) noexcept
 
template<typename ByteArray , if_compatible_qbytearray_like< ByteArray > = true>
 QByteArrayView (const ByteArray &ba) noexcept
 
template<typename Container , if_compatible_container< Container > = true>
constexpr QByteArrayView (const Container &c) noexcept
 
template<size_t Size>
constexpr QByteArrayView (const char(&data)[Size]) noexcept
 
QByteArray toByteArray () const
 
constexpr qsizetype size () const noexcept
 
constexpr const_pointer data () const noexcept
 
constexpr const_pointer constData () const noexcept
 
constexpr char operator[] (qsizetype n) const
 
constexpr char at (qsizetype n) const
 
constexpr QByteArrayView first (qsizetype n) const
 
constexpr QByteArrayView last (qsizetype n) const
 
constexpr QByteArrayView sliced (qsizetype pos) const
 
constexpr QByteArrayView sliced (qsizetype pos, qsizetype n) const
 
constexpr QByteArrayView chopped (qsizetype len) const
 
constexpr QByteArrayView left (qsizetype n) const
 
constexpr QByteArrayView right (qsizetype n) const
 
constexpr QByteArrayView mid (qsizetype pos, qsizetype n=-1) const
 
constexpr void truncate (qsizetype n)
 
constexpr void chop (qsizetype n)
 
QByteArrayView trimmed () const noexcept
 
short toShort (bool *ok=nullptr, int base=10) const
 
ushort toUShort (bool *ok=nullptr, int base=10) const
 
int toInt (bool *ok=nullptr, int base=10) const
 
uint toUInt (bool *ok=nullptr, int base=10) const
 
long toLong (bool *ok=nullptr, int base=10) const
 
ulong toULong (bool *ok=nullptr, int base=10) const
 
qlonglong toLongLong (bool *ok=nullptr, int base=10) const
 
qulonglong toULongLong (bool *ok=nullptr, int base=10) const
 
float toFloat (bool *ok=nullptr) const
 
double toDouble (bool *ok=nullptr) const
 
bool startsWith (QByteArrayView other) const noexcept
 
bool startsWith (char c) const noexcept
 
bool endsWith (QByteArrayView other) const noexcept
 
bool endsWith (char c) const noexcept
 
qsizetype indexOf (QByteArrayView a, qsizetype from=0) const noexcept
 
qsizetype indexOf (char ch, qsizetype from=0) const noexcept
 
bool contains (QByteArrayView a) const noexcept
 
bool contains (char c) const noexcept
 
qsizetype lastIndexOf (QByteArrayView a) const noexcept
 
qsizetype lastIndexOf (QByteArrayView a, qsizetype from) const noexcept
 
qsizetype lastIndexOf (char ch, qsizetype from=-1) const noexcept
 
qsizetype count (QByteArrayView a) const noexcept
 
qsizetype count (char ch) const noexcept
 
int compare (QByteArrayView a, Qt::CaseSensitivity cs=Qt::CaseSensitive) const noexcept
 
bool isValidUtf8 () const noexcept
 
constexpr const_iterator begin () const noexcept
 
constexpr const_iterator end () const noexcept
 
constexpr const_iterator cbegin () const noexcept
 
constexpr const_iterator cend () const noexcept
 
constexpr const_reverse_iterator rbegin () const noexcept
 
constexpr const_reverse_iterator rend () const noexcept
 
constexpr const_reverse_iterator crbegin () const noexcept
 
constexpr const_reverse_iterator crend () const noexcept
 
constexpr bool empty () const noexcept
 
constexpr char front () const
 
constexpr char back () const
 
constexpr bool isNull () const noexcept
 
constexpr bool isEmpty () const noexcept
 
constexpr qsizetype length () const noexcept
 
constexpr char first () const
 
constexpr char last () const
 

Static Public Member Functions

template<typename Byte , size_t Size, if_compatible_byte< Byte > = true>
static constexpr QByteArrayView fromArray (const Byte(&data)[Size]) noexcept
 

Friends

bool operator== (QByteArrayView lhs, QByteArrayView rhs) noexcept
 
bool operator!= (QByteArrayView lhs, QByteArrayView rhs) noexcept
 
bool operator< (QByteArrayView lhs, QByteArrayView rhs) noexcept
 
bool operator<= (QByteArrayView lhs, QByteArrayView rhs) noexcept
 
bool operator> (QByteArrayView lhs, QByteArrayView rhs) noexcept
 
bool operator>= (QByteArrayView lhs, QByteArrayView rhs) noexcept
 

Detailed Description

Definition at line 74 of file qbytearrayview.h.

Member Typedef Documentation

◆ const_iterator

Definition at line 87 of file qbytearrayview.h.

◆ const_pointer

Definition at line 84 of file qbytearrayview.h.

◆ const_reference

Definition at line 82 of file qbytearrayview.h.

◆ const_reverse_iterator

Definition at line 89 of file qbytearrayview.h.

◆ difference_type

Definition at line 79 of file qbytearrayview.h.

◆ iterator

Definition at line 86 of file qbytearrayview.h.

◆ pointer

Definition at line 83 of file qbytearrayview.h.

◆ reference

Definition at line 81 of file qbytearrayview.h.

◆ reverse_iterator

typedef std::reverse_iterator<iterator> QByteArrayView::reverse_iterator

Definition at line 88 of file qbytearrayview.h.

◆ size_type

Definition at line 80 of file qbytearrayview.h.

◆ storage_type

Definition at line 77 of file qbytearrayview.h.

◆ value_type

typedef const char QByteArrayView::value_type

Definition at line 78 of file qbytearrayview.h.

Constructor & Destructor Documentation

◆ QByteArrayView() [1/8]

constexpr QByteArrayView::QByteArrayView ( )
inlineconstexprnoexcept

Definition at line 130 of file qbytearrayview.h.

◆ QByteArrayView() [2/8]

constexpr QByteArrayView::QByteArrayView ( std::nullptr_t  )
inlineconstexprnoexcept

Definition at line 132 of file qbytearrayview.h.

◆ QByteArrayView() [3/8]

template<typename Byte , if_compatible_byte< Byte > = true>
constexpr QByteArrayView::QByteArrayView ( const Byte *  data,
qsizetype  len 
)
inlineconstexpr

Definition at line 136 of file qbytearrayview.h.

◆ QByteArrayView() [4/8]

template<typename Byte , if_compatible_byte< Byte > = true>
constexpr QByteArrayView::QByteArrayView ( const Byte *  first,
const Byte *  last 
)
inlineconstexpr

Definition at line 141 of file qbytearrayview.h.

◆ QByteArrayView() [5/8]

template<typename Pointer , if_compatible_pointer< Pointer > = true>
constexpr QByteArrayView::QByteArrayView ( const Pointer &  data)
inlineconstexprnoexcept

Definition at line 149 of file qbytearrayview.h.

◆ QByteArrayView() [6/8]

template<typename ByteArray , if_compatible_qbytearray_like< ByteArray > = true>
QByteArrayView::QByteArrayView ( const ByteArray &  ba)
inlinenoexcept

Definition at line 158 of file qbytearrayview.h.

◆ QByteArrayView() [7/8]

template<typename Container , if_compatible_container< Container > = true>
constexpr QByteArrayView::QByteArrayView ( const Container &  c)
inlineconstexprnoexcept

Definition at line 163 of file qbytearrayview.h.

◆ QByteArrayView() [8/8]

template<size_t Size>
constexpr QByteArrayView::QByteArrayView ( const char(&)  data[Size])
inlineconstexprnoexcept

Definition at line 166 of file qbytearrayview.h.

Member Function Documentation

◆ at()

constexpr char QByteArrayView::at ( qsizetype  n) const
inlineconstexpr

Definition at line 188 of file qbytearrayview.h.

Referenced by QHttpHeaderParser::parseStatus().

+ Here is the caller graph for this function:

◆ back()

constexpr char QByteArrayView::back ( ) const
inlineconstexpr

Definition at line 302 of file qbytearrayview.h.

References m_data, and Q_ASSERT.

◆ begin()

constexpr const_iterator QByteArrayView::begin ( ) const
inlineconstexprnoexcept

Definition at line 291 of file qbytearrayview.h.

◆ cbegin()

constexpr const_iterator QByteArrayView::cbegin ( ) const
inlineconstexprnoexcept

Definition at line 293 of file qbytearrayview.h.

References begin().

Referenced by deviceNumber().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cend()

constexpr const_iterator QByteArrayView::cend ( ) const
inlineconstexprnoexcept

Definition at line 294 of file qbytearrayview.h.

◆ chop()

constexpr void QByteArrayView::chop ( qsizetype  n)
inlineconstexpr

Definition at line 215 of file qbytearrayview.h.

References Q_ASSERT.

Referenced by QMimeDataPrivate::retrieveTypedData().

+ Here is the caller graph for this function:

◆ chopped()

constexpr QByteArrayView QByteArrayView::chopped ( qsizetype  len) const
inlineconstexpr

Definition at line 198 of file qbytearrayview.h.

References Q_ASSERT.

◆ compare()

int QByteArrayView::compare ( QByteArrayView  a,
Qt::CaseSensitivity  cs = Qt::CaseSensitive 
) const
inlinenoexcept

Definition at line 338 of file qbytearrayview.h.

References Qt::CaseSensitive, QtPrivate::compareMemory(), and qstrnicmp().

Referenced by QOffsetStringArray< StaticString, OffsetList >::contains(), digestMd5ResponseHelper(), and QConfFileSettingsPrivate::readIniFile().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ constData()

constexpr const_pointer QByteArrayView::constData ( ) const
inlineconstexprnoexcept

Definition at line 180 of file qbytearrayview.h.

Referenced by Moc::generate(), QV4::GlobalFunctions::method_parseInt(), dtlscallbacks::q_generate_cookie_callback(), QConfFileSettingsPrivate::readIniFile(), and QByteDataBuffer::readPointer().

+ Here is the caller graph for this function:

◆ contains() [1/2]

bool QByteArrayView::contains ( char  c) const
inlinenoexcept

Definition at line 269 of file qbytearrayview.h.

References indexOf().

+ Here is the call graph for this function:

◆ contains() [2/2]

bool QByteArrayView::contains ( QByteArrayView  a) const
inlinenoexcept

Definition at line 267 of file qbytearrayview.h.

References indexOf().

Referenced by QAnyStringViewUtils::doesContain(), fieldNameCheck(), and parseOtoolLibraryLine().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ count() [1/2]

qsizetype QByteArrayView::count ( char  ch) const
inlinenoexcept

Definition at line 281 of file qbytearrayview.h.

References ch, and QtPrivate::count().

+ Here is the call graph for this function:

◆ count() [2/2]

qsizetype QByteArrayView::count ( QByteArrayView  a) const
inlinenoexcept

Definition at line 279 of file qbytearrayview.h.

References QtPrivate::count().

Referenced by readGpuFeatures().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crbegin()

constexpr const_reverse_iterator QByteArrayView::crbegin ( ) const
inlineconstexprnoexcept

Definition at line 297 of file qbytearrayview.h.

Referenced by Moc::generate().

+ Here is the caller graph for this function:

◆ crend()

constexpr const_reverse_iterator QByteArrayView::crend ( ) const
inlineconstexprnoexcept

Definition at line 298 of file qbytearrayview.h.

Referenced by Moc::generate().

+ Here is the caller graph for this function:

◆ data()

◆ empty()

constexpr bool QByteArrayView::empty ( ) const
inlineconstexprnoexcept

Definition at line 300 of file qbytearrayview.h.

◆ end()

constexpr const_iterator QByteArrayView::end ( ) const
inlineconstexprnoexcept

Definition at line 292 of file qbytearrayview.h.

◆ endsWith() [1/2]

bool QByteArrayView::endsWith ( char  c) const
inlinenoexcept

Definition at line 259 of file qbytearrayview.h.

◆ endsWith() [2/2]

bool QByteArrayView::endsWith ( QByteArrayView  other) const
inlinenoexcept

Definition at line 257 of file qbytearrayview.h.

References QtPrivate::endsWith(), and other().

Referenced by parseETag(), parseIfMatch(), and parseIfNoneMatch().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ first() [1/2]

constexpr char QByteArrayView::first ( ) const
inlineconstexpr

Definition at line 311 of file qbytearrayview.h.

◆ first() [2/2]

constexpr QByteArrayView QByteArrayView::first ( qsizetype  n) const
inlineconstexpr

Definition at line 190 of file qbytearrayview.h.

References Q_ASSERT.

Referenced by QLocationUtils::getPosInfoFromNmea(), QLocationUtils::getSatInUseFromNmea(), isEntryInIanaList(), QByteDataBuffer::readPointer(), and verifyDigestMD5().

+ Here is the caller graph for this function:

◆ fromArray()

template<typename Byte , size_t Size, if_compatible_byte< Byte > = true>
static constexpr QByteArrayView QByteArrayView::fromArray ( const Byte(&)  data[Size])
inlinestaticconstexprnoexcept

Definition at line 174 of file qbytearrayview.h.

References Size.

Referenced by QNfcTagType4NdefFsm::getCommand().

+ Here is the caller graph for this function:

◆ front()

constexpr char QByteArrayView::front ( ) const
inlineconstexpr

Definition at line 301 of file qbytearrayview.h.

References m_data, and Q_ASSERT.

◆ indexOf() [1/2]

qsizetype QByteArrayView::indexOf ( char  ch,
qsizetype  from = 0 
) const
inlinenoexcept

Definition at line 264 of file qbytearrayview.h.

References ch, and QtPrivate::findByteArray().

+ Here is the call graph for this function:

◆ indexOf() [2/2]

qsizetype QByteArrayView::indexOf ( QByteArrayView  a,
qsizetype  from = 0 
) const
inlinenoexcept

Definition at line 262 of file qbytearrayview.h.

References QtPrivate::findByteArray().

Referenced by QLocationUtils::getPosInfoFromNmea(), QLocationUtils::getSatInfoFromNmea(), QLocationUtils::getSatInUseFromNmea(), QLocationUtils::hasValidNmeaChecksum(), QByteArray::indexOf(), isEntryInIanaList(), and QHttpHeaderParser::parseStatus().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isEmpty()

constexpr bool QByteArrayView::isEmpty ( ) const
inlineconstexprnoexcept

Definition at line 308 of file qbytearrayview.h.

Referenced by dataToUrls(), Parser::findEnumValues(), findSectionName(), QLocationUtils::getSatInfoFromNmea(), QLocationUtils::getSatInUseFromNmea(), parseOtoolLibraryLine(), and QQmlJSStreamWriter::writeLibraryImport().

+ Here is the caller graph for this function:

◆ isNull()

constexpr bool QByteArrayView::isNull ( ) const
inlineconstexprnoexcept

Definition at line 307 of file qbytearrayview.h.

References m_data.

Referenced by QtPrivate::compareMemory(), and digestMd5ResponseHelper().

+ Here is the caller graph for this function:

◆ isValidUtf8()

bool QByteArrayView::isValidUtf8 ( ) const
inlinenoexcept

Definition at line 286 of file qbytearrayview.h.

References QtPrivate::isValidUtf8().

Referenced by QBasicUtf8StringView< UseChar8T >::isValidUtf8().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ last() [1/2]

constexpr char QByteArrayView::last ( ) const
inlineconstexpr

Definition at line 312 of file qbytearrayview.h.

◆ last() [2/2]

constexpr QByteArrayView QByteArrayView::last ( qsizetype  n) const
inlineconstexpr

Definition at line 192 of file qbytearrayview.h.

References Q_ASSERT.

Referenced by Moc::generate().

+ Here is the caller graph for this function:

◆ lastIndexOf() [1/3]

qsizetype QByteArrayView::lastIndexOf ( char  ch,
qsizetype  from = -1 
) const
inlinenoexcept

Definition at line 276 of file qbytearrayview.h.

References ch, and QtPrivate::lastIndexOf().

+ Here is the call graph for this function:

◆ lastIndexOf() [2/3]

qsizetype QByteArrayView::lastIndexOf ( QByteArrayView  a) const
inlinenoexcept

Definition at line 272 of file qbytearrayview.h.

References lastIndexOf().

Referenced by QByteArray::lastIndexOf().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ lastIndexOf() [3/3]

qsizetype QByteArrayView::lastIndexOf ( QByteArrayView  a,
qsizetype  from 
) const
inlinenoexcept

Definition at line 274 of file qbytearrayview.h.

References QtPrivate::lastIndexOf().

+ Here is the call graph for this function:

◆ left()

constexpr QByteArrayView QByteArrayView::left ( qsizetype  n) const
inlineconstexpr

Definition at line 201 of file qbytearrayview.h.

Referenced by enumsToValues(), and readGpuFeatures().

+ Here is the caller graph for this function:

◆ length()

constexpr qsizetype QByteArrayView::length ( ) const
inlineconstexprnoexcept

Definition at line 309 of file qbytearrayview.h.

Referenced by QQmlJSStreamWriter::writeLibraryImport(), and QQmlJSStreamWriter::writeScriptBinding().

+ Here is the caller graph for this function:

◆ mid()

constexpr QByteArrayView QByteArrayView::mid ( qsizetype  pos,
qsizetype  n = -1 
) const
inlineconstexpr

Definition at line 205 of file qbytearrayview.h.

References m_data, and pos.

Referenced by parseOtoolLibraryLine().

+ Here is the caller graph for this function:

◆ operator[]()

constexpr char QByteArrayView::operator[] ( qsizetype  n) const
inlineconstexpr

Definition at line 182 of file qbytearrayview.h.

References m_data, and Q_ASSERT.

◆ rbegin()

constexpr const_reverse_iterator QByteArrayView::rbegin ( ) const
inlineconstexprnoexcept

Definition at line 295 of file qbytearrayview.h.

◆ rend()

constexpr const_reverse_iterator QByteArrayView::rend ( ) const
inlineconstexprnoexcept

Definition at line 296 of file qbytearrayview.h.

References begin().

+ Here is the call graph for this function:

◆ right()

constexpr QByteArrayView QByteArrayView::right ( qsizetype  n) const
inlineconstexpr

Definition at line 203 of file qbytearrayview.h.

◆ size()

◆ sliced() [1/2]

constexpr QByteArrayView QByteArrayView::sliced ( qsizetype  pos) const
inlineconstexpr

Definition at line 194 of file qbytearrayview.h.

References pos, and Q_ASSERT.

Referenced by QLocationUtils::getNmeaSentenceType(), QLocationUtils::getSatelliteSystem(), QLocationUtils::hasValidNmeaChecksum(), isEntryInIanaList(), QPluginParsedMetaData::parse(), QAuthenticatorPrivate::parseHttpResponse(), and QHttpHeaderParser::parseStatus().

+ Here is the caller graph for this function:

◆ sliced() [2/2]

constexpr QByteArrayView QByteArrayView::sliced ( qsizetype  pos,
qsizetype  n 
) const
inlineconstexpr

Definition at line 196 of file qbytearrayview.h.

References pos, and Q_ASSERT.

◆ startsWith() [1/2]

bool QByteArrayView::startsWith ( char  c) const
inlinenoexcept

Definition at line 254 of file qbytearrayview.h.

◆ startsWith() [2/2]

bool QByteArrayView::startsWith ( QByteArrayView  other) const
inlinenoexcept

Definition at line 252 of file qbytearrayview.h.

References other(), and QtPrivate::startsWith().

Referenced by Parser::findEnumValues(), gradleBuildFlags(), QV4::GlobalFunctions::method_parseFloat(), parseETag(), parseIfMatch(), parseIfNoneMatch(), parseOtoolLibraryLine(), and QHttpHeaderParser::parseStatus().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ toByteArray()

QByteArray QByteArrayView::toByteArray ( ) const
inline

Definition at line 709 of file qbytearray.h.

References data(), and size().

Referenced by QSGCompressedTexture::commitTextureOperations(), QMessageAuthenticationCode::hash(), QCryptographicHash::result(), QMessageAuthenticationCode::result(), and QUuid::toRfc4122().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ toDouble()

double QByteArrayView::toDouble ( bool *  ok = nullptr) const
inline

Definition at line 244 of file qbytearrayview.h.

References ok, and QtPrivate::toDouble().

Referenced by QByteArray::toDouble().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ toFloat()

float QByteArrayView::toFloat ( bool *  ok = nullptr) const
inline

Definition at line 237 of file qbytearrayview.h.

References ok, and QtPrivate::toFloat().

+ Here is the call graph for this function:

◆ toInt()

int QByteArrayView::toInt ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 225 of file qbytearrayview.h.

References base, and ok.

Referenced by QLocationUtils::hasValidNmeaChecksum(), and QAnyStringViewUtils::toInt().

+ Here is the caller graph for this function:

◆ toLong()

long QByteArrayView::toLong ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 229 of file qbytearrayview.h.

References base, and ok.

◆ toLongLong()

qlonglong QByteArrayView::toLongLong ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 233 of file qbytearrayview.h.

References base, and ok.

◆ toShort()

short QByteArrayView::toShort ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 221 of file qbytearrayview.h.

References base, and ok.

◆ toUInt()

uint QByteArrayView::toUInt ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 227 of file qbytearrayview.h.

References base, and ok.

Referenced by findSectionName().

+ Here is the caller graph for this function:

◆ toULong()

ulong QByteArrayView::toULong ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 231 of file qbytearrayview.h.

References base, and ok.

◆ toULongLong()

qulonglong QByteArrayView::toULongLong ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 235 of file qbytearrayview.h.

References base, and ok.

◆ toUShort()

ushort QByteArrayView::toUShort ( bool *  ok = nullptr,
int  base = 10 
) const
inline

Definition at line 223 of file qbytearrayview.h.

References base, and ok.

◆ trimmed()

QByteArrayView QByteArrayView::trimmed ( ) const
inlinenoexcept

Definition at line 219 of file qbytearrayview.h.

References QtPrivate::trimmed().

Referenced by dataToUrls(), QPdfDocument::pageIndexForLabel(), parseIfMatch(), and parseIfNoneMatch().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ truncate()

constexpr void QByteArrayView::truncate ( qsizetype  n)
inlineconstexpr

Definition at line 213 of file qbytearrayview.h.

References Q_ASSERT.

Referenced by createFromName().

+ Here is the caller graph for this function:

Friends And Related Symbol Documentation

◆ operator!=

bool operator!= ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 316 of file qbytearrayview.h.

◆ operator<

bool operator< ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 318 of file qbytearrayview.h.

◆ operator<=

bool operator<= ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 320 of file qbytearrayview.h.

◆ operator==

bool operator== ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 314 of file qbytearrayview.h.

◆ operator>

bool operator> ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 322 of file qbytearrayview.h.

◆ operator>=

bool operator>= ( QByteArrayView  lhs,
QByteArrayView  rhs 
)
friend

Definition at line 324 of file qbytearrayview.h.


The documentation for this class was generated from the following files: