#include <QtCore/qcontainerfwd.h>
#include <QtCore/qglobal.h>
#include <QtCore/qalgorithms.h>
#include <new>
#include <string.h>
Go to the source code of this file.
|
template<typename T , int Prealloc1, int Prealloc2> |
bool | operator!= (const QVarLengthArray< T, Prealloc1 > &l, const QVarLengthArray< T, Prealloc2 > &r) |
|
template<typename T , int Prealloc1, int Prealloc2> |
bool | operator== (const QVarLengthArray< T, Prealloc1 > &l, const QVarLengthArray< T, Prealloc2 > &r) |
|
◆ operator!=()
template<typename T , int Prealloc1, int Prealloc2>
◆ operator==()
template<typename T , int Prealloc1, int Prealloc2>
Definition at line 383 of file qvarlengtharray.h.
387 for (
int i = 0; i < l.
size(); i++) {
388 if (l.
at(i) != r.
at(i))
const T & at(int idx) const