9#include <QtCore/qarraydatapointer.h>
10#include <QtCore/qcompare.h>
11#include <QtCore/qnamespace.h>
12#include <QtCore/qhashfunctions.h>
13#include <QtCore/qiterator.h>
14#include <QtCore/qcontainertools_impl.h>
15#include <QtCore/qnamespace.h>
16#include <QtCore/qscopeguard.h>
17#include <QtCore/qttypetraits.h>
21#include <initializer_list>
29 template <
typename V,
typename U>
qsizetype indexOf(
const QList<V> &list,
const U &u, qsizetype from)
noexcept;
30 template <
typename V,
typename U>
qsizetype lastIndexOf(
const QList<V> &list,
const U &u, qsizetype from)
noexcept;
40 Self *
self() {
return static_cast<Self *>(
this); }
41 const Self *
self()
const {
return static_cast<
const Self *>(
this); }
44 template <
typename AT = T>
46 template <
typename AT = T>
49 template <
typename AT = T>
52 return self()->indexOf(t) != -1;
66template <>
struct QListSpecialMethods<QByteArray>;
67template <>
struct QListSpecialMethods<QString>;
69#if !defined(QT_STRICT_QLIST_ITERATORS) && (QT_VERSION >= QT_VERSION_CHECK(6
, 6
, 0
)) && !defined(Q_OS_WIN)
70#define QT_STRICT_QLIST_ITERATORS
74template<
typename T>
class QVector :
public QList<T> {};
86 class DisableRValueRefs {};
88 friend class ::tst_QList;
122 friend class QList<T>;
125#ifdef QT_STRICT_QLIST_ITERATORS
132#ifdef QT_COMPILER_HAS_LWG3346
141#ifndef QT_STRICT_QLIST_ITERATORS
142 inline constexpr explicit iterator(T *n) : i(n) {}
146 inline T &
operator[](qsizetype j)
const {
return *(i + j); }
147#ifdef __cpp_lib_three_way_comparison
171#if QT_DEPRECATED_SINCE(6
, 3
) && !defined(QT_STRICT_QLIST_ITERATORS)
173 "the implicit conversion between a QList/QVector::iterator "
197 friend class QList<T>;
199 const T *i =
nullptr;
200#ifdef QT_STRICT_QLIST_ITERATORS
207#ifdef QT_COMPILER_HAS_LWG3346
216#ifndef QT_STRICT_QLIST_ITERATORS
217 inline constexpr explicit const_iterator(
const T *n) : i(n) {}
222 inline const T &
operator[](qsizetype j)
const {
return *(i + j); }
223#ifdef __cpp_lib_three_way_comparison
251#if QT_DEPRECATED_SINCE(6
, 3
) && !defined(QT_STRICT_QLIST_ITERATORS)
253 "the implicit conversion between a QList/QVector::const_iterator "
255 inline operator const T*()
const {
return i; }
281 void resize_internal(qsizetype i);
284 const std::less<
const T*> less = {};
285 return !less(d.end(), i.i) && !less(i.i, d.begin());
288 void verify([[maybe_unused]] qsizetype pos = 0, [[maybe_unused]] qsizetype n = 1)
const
291 Q_ASSERT(pos <= size());
293 Q_ASSERT(n <= size() - pos);
302 constexpr QList()
noexcept =
default;
307 Q_CHECK_PTR(d.data());
308 d.appendInitialize(size);
311 QList(qsizetype size, parameter_type t)
315 Q_CHECK_PTR(d.data());
316 d->copyAppend(size, t);
324 Q_CHECK_PTR(d.data());
325 d->copyAppend(args.begin(), args.end());
334 template <
typename InputIterator, if_input_iterator<InputIterator> =
true>
335 QList(InputIterator i1, InputIterator i2)
337 if constexpr (!
std::is_convertible_v<
typename std::iterator_traits<InputIterator>::iterator_category,
std::forward_iterator_tag>) {
338 std::copy(i1, i2,
std::back_inserter(*
this));
340 const auto distance =
std::distance(i1, i2);
342 d = DataPointer(qsizetype(distance));
343 Q_CHECK_PTR(d.data());
346 if constexpr (std::is_same_v<std::decay_t<InputIterator>, iterator> ||
347 std::is_same_v<std::decay_t<InputIterator>, const_iterator>) {
348 d->copyAppend(i1.i, i2.i);
350 d->appendIteratorRange(i1, i2);
358 inline explicit QList(
const String &str)
365 Q_CHECK_PTR(d.data());
366 d->appendUninitialized(size);
376 template <
typename U = T,
377 Qt::if_has_qt_compare_three_way<U, U> =
true>
380 return QtOrderingPrivate::lexicographicalCompareThreeWay(lhs.begin(), lhs.end(),
381 rhs.begin(), rhs.end());
384#if defined(__cpp_lib_three_way_comparison) && defined(__cpp_lib_concepts)
385 template <
typename U =
T,
396 template <
typename U = T>
399 if (size() != other.size())
401 if (begin() == other.begin())
405 return std::equal(begin(), end(), other.begin(), other.end());
408 template <
typename U = T>
411 return !(*
this == other);
414#ifndef __cpp_lib_three_way_comparison
415 template <
typename U = T>
416 QTypeTraits::compare_lt_result_container<QList, U> operator<(
const QList &other)
const
417 noexcept(
noexcept(std::lexicographical_compare<
typename QList<U>::const_iterator,
418 typename QList::const_iterator>(
419 std::declval<QList<U>>().begin(), std::declval<QList<U>>().end(),
420 other.begin(), other.end())))
422 return std::lexicographical_compare(begin(), end(),
423 other.begin(), other.end());
426 template <
typename U = T>
430 return other < *
this;
433 template <
typename U = T>
434 QTypeTraits::compare_lt_result_container<QList, U> operator<=(
const QList &other)
const
435 noexcept(
noexcept(other < std::declval<QList<U>>()))
437 return !(other < *
this);
440 template <
typename U = T>
444 return !(*
this < other);
460 constexpr size_t MaxSize = maxSize();
461 Q_PRESUME(size_t(d.size) <= MaxSize);
467 constexpr bool isEmpty()
const noexcept {
return size() == 0; }
471 resize_internal(size);
472 if (size >
this->size())
473 d.appendInitialize(size);
475 void resize(qsizetype size, parameter_type c)
477 resize_internal(size);
478 if (size >
this->size())
479 d->copyAppend(size -
this->size(), c);
483 resize_internal(size);
484 if (size >
this->size())
485 d->appendUninitialized(size);
503 if (d.needsDetach()) {
505 DataPointer detached(d.allocatedCapacity());
514 Q_ASSERT_X(size_t(i) < size_t(d.size),
"QList::at",
"index out of range");
519 Q_ASSERT_X(size_t(i) < size_t(d.size),
"QList::operator[]",
"index out of range");
524 void append(parameter_type t) { emplaceBack(t); }
528 if constexpr (DataPointer::pass_parameter_by_value) {
531 emplaceBack(
std::move(t));
540 if constexpr (DataPointer::pass_parameter_by_value) {
543 emplaceFront(
std::move(t));
546 void prepend(parameter_type t) { emplaceFront(t); }
548 template<
typename... Args>
551 template <
typename ...Args>
555 {
return emplace(i, t); }
559 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
560 return insert(before, 1, t);
564 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
565 return insert(std::distance(constBegin(), before), n, t);
569 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
570 return insert(std::distance(constBegin(), before), std::move(t));
573 if constexpr (DataPointer::pass_parameter_by_value) {
578 return emplace(i,
std::move(t));
588 template <
typename InputIterator, if_input_iterator<InputIterator> =
true>
590 { d->assign(first, last);
return *
this; }
595 return assign(l.begin(), l.end());
600 template <
typename ...Args>
603 Q_ASSERT_X(isValidIterator(before),
"QList::emplace",
"The specified iterator argument 'before' is invalid");
607 template <
typename ...Args>
616 Q_ASSERT_X(i >= 0 && i < d.size,
"QList<T>::replace",
"index out of range");
623 if constexpr (DataPointer::pass_parameter_by_value) {
627 Q_ASSERT_X(i >= 0 && i < d.size,
"QList<T>::replace",
"index out of range");
630 d.data()[i] = std::move(t);
634 void remove(qsizetype i, qsizetype n = 1);
639 Q_ASSERT(!isEmpty());
640 const auto eraser = qScopeGuard([&] { d->eraseFirst(); });
641 return std::move(first());
645 Q_ASSERT(!isEmpty());
646 const auto eraser = qScopeGuard([&] { d->eraseLast(); });
647 return std::move(last());
657 template <
typename AT>
659 template <
typename AT>
661 template <
typename AT>
665 template <
typename AT = T>
668 return qsizetype(std::count(data(), data() + size(), t));
672 template <
typename AT = T>
675 return QtPrivate::sequential_erase_with_copy(*
this, t);
678 template <
typename AT = T>
681 return QtPrivate::sequential_erase_one(*
this, t);
684 template <
typename Predicate>
687 return QtPrivate::sequential_erase_if(*
this, pred);
693 const auto remover = qScopeGuard([&] { remove(i); });
697 void move(qsizetype from, qsizetype to)
699 Q_ASSERT_X(from >= 0 && from < size(),
"QList::move(qsizetype, qsizetype)",
"'from' is out-of-range");
700 Q_ASSERT_X(to >= 0 && to < size(),
"QList::move(qsizetype, qsizetype)",
"'to' is out-of-range");
704 T *
const b = d.begin();
706 std::rotate(b + from, b + from + 1, b + to + 1);
708 std::rotate(b + to, b + from, b + from + 1);
732 inline T&
first() { Q_ASSERT(!isEmpty());
return *begin(); }
733 inline const T &
first()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
734 inline const T &
constFirst()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
735 inline T&
last() { Q_ASSERT(!isEmpty());
return *(end()-1); }
736 inline const T &
last()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
737 inline const T &
constLast()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
738 inline bool startsWith(parameter_type t)
const {
return !isEmpty() && first() == t; }
739 inline bool endsWith(parameter_type t)
const {
return !isEmpty() && last() == t; }
740 QList<T>
mid(qsizetype pos, qsizetype len = -1)
const;
743 { verify(0, n);
return QList<T>(begin(), begin() + n); }
745 { verify(0, n);
return QList<T>(end() - n, end()); }
747 { verify(pos, 0);
return QList<T>(begin() + pos, end()); }
749 { verify(pos, n);
return QList<T>(begin() + pos, begin() + pos + n); }
751 T
value(qsizetype i)
const {
return value(i, T()); }
752 T
value(qsizetype i, parameter_type defaultValue)
const;
755 Q_ASSERT_X(i >= 0 && i < size() && j >= 0 && j < size(),
756 "QList<T>::swap",
"index out of range");
758 qSwap(d.begin()[i], d.begin()[j]);
769 template <
typename ...Args>
773 {
return d.size == 0; }
788 {
QList n = *
this; n += l;
return n; }
790 {
return std::move(*
this += l); }
792 {
QList n = *
this; n +=
std::move(l);
return n; }
794 {
return std::move(*
this +=
std::move(l)); }
796 { append(t);
return *
this; }
797 inline QList<T> &operator<< (parameter_type t)
798 { append(t);
return *
this; }
799 inline QList<T> &operator<<(
const QList<T> &l)
800 { *
this += l;
return *
this; }
802 { *
this +=
std::move(l);
return *
this; }
804 { append(
std::move(t));
return *
this; }
805 inline QList<T> &operator<<(rvalue_ref t)
806 { append(
std::move(t));
return *
this; }
815 template<qsizetype N>
818 return QList<T>({
nullptr,
const_cast<T *>(t), N });
822template <
typename InputIterator,
823 typename ValueType =
typename std::iterator_traits<InputIterator>::value_type,
824 QtPrivate::IfIsInputIterator<InputIterator> =
true>
828inline void QList<T>::resize_internal(qsizetype newSize)
830 Q_ASSERT(newSize >= 0);
832 if (d.needsDetach() || newSize > capacity() - d.freeSpaceAtBegin()) {
833 d.detachAndGrow(QArrayData::GrowsAtEnd, newSize - d.size,
nullptr,
nullptr);
834 }
else if (newSize < size()) {
835 d->truncate(newSize);
843 if (asize <= capacity() - d.freeSpaceAtBegin()) {
844 if (d.flags() & Data::CapacityReserved)
848 d.setFlag(Data::CapacityReserved);
853 qsizetype newSize = qMax(asize, size());
854 DataPointer detached(newSize);
856 Q_CHECK_PTR(detached.data());
857 detached->copyAppend(d.begin(), d.end());
858 if (detached.d_ptr())
859 detached.setFlag(Data::CapacityReserved);
868 if (d.needsDetach() || size() < capacity()) {
870 DataPointer detached(size());
872 Q_CHECK_PTR(detached.data());
874 detached->copyAppend(d.data(), d.data() + d.size);
876 detached->moveAppend(d.data(), d.data() + d.size);
881 d.clearFlag(Data::CapacityReserved);
887 Q_ASSERT_X(size_t(i) + size_t(n) <= size_t(d.size),
"QList::remove",
"index out of range");
888 Q_ASSERT_X(n >= 0,
"QList::remove",
"invalid count");
894 d->erase(d.begin() + i, n);
900 Q_ASSERT(!isEmpty());
908 Q_ASSERT(!isEmpty());
915inline T
QList<T>::
value(qsizetype i, parameter_type defaultValue)
const
917 return size_t(i) < size_t(d.size) ? at(i) : defaultValue;
923 d->growAppend(i1.i, i2.i);
929 Q_ASSERT(&other !=
this);
932 if (other.d.needsDetach() || !
std::is_nothrow_move_constructible_v<T>)
933 return append(other);
936 d.detachAndGrow(QArrayData::GrowsAtEnd, other.size(),
nullptr,
nullptr);
937 Q_ASSERT(d.freeSpaceAtEnd() >= other.size());
938 d->moveAppend(other.d.begin(), other.d.end());
942template<
typename... Args>
945 d->emplace(0, std::forward<Args>(args)...);
954 Q_ASSERT_X(size_t(i) <= size_t(d.size),
"QList<T>::insert",
"index out of range");
955 Q_ASSERT_X(n >= 0,
"QList::insert",
"invalid count");
962template <
typename ...Args>
966 Q_ASSERT_X(i >= 0 && i <= d.size,
"QList<T>::insert",
"index out of range");
967 d->emplace(i, std::forward<Args>(args)...);
972template<
typename... Args>
975 d->emplace(d.size, std::forward<Args>(args)...);
982 Q_ASSERT_X(isValidIterator(abegin),
"QList::erase",
"The specified iterator argument 'abegin' is invalid");
983 Q_ASSERT_X(isValidIterator(aend),
"QList::erase",
"The specified iterator argument 'aend' is invalid");
984 Q_ASSERT(aend >= abegin);
987 qsizetype n =
std::distance(abegin, aend);
998 if (d.needsDetach() || newSize > capacity()) {
1000 DataPointer detached(d.detachCapacity(newSize));
1001 detached->copyAppend(newSize, t);
1006 d->assign(d.begin(), d.begin() + qMin(size(), newSize), t);
1007 if (newSize > size()) {
1008 d->copyAppend(newSize - size(), copy);
1009 }
else if (newSize < size()) {
1010 d->truncate(newSize);
1017template <
typename T,
typename U>
1021 from = qMax(from + vector.size(), qsizetype(0));
1022 if (from < vector.size()) {
1023 auto n = vector.begin() + from - 1;
1024 auto e = vector.end();
1027 return qsizetype(n - vector.begin());
1032template <
typename T,
typename U>
1036 from += vector.d.size;
1037 else if (from >= vector.size())
1038 from = vector.size() - 1;
1040 auto b = vector.begin();
1041 auto n = vector.begin() + from + 1;
1044 return qsizetype(n - b);
1051template <
typename T>
1052template <
typename AT>
1055 return QtPrivate::indexOf(*self(), t, from);
1058template <
typename T>
1059template <
typename AT>
1062 return QtPrivate::lastIndexOf(*self(), t, from);
1065template <
typename T>
1071 switch (QContainerImplHelper::mid(d.size, &p, &l)) {
1072 case QContainerImplHelper::Null:
1073 case QContainerImplHelper::Empty:
1075 case QContainerImplHelper::Full:
1077 case QContainerImplHelper::Subset:
1082 DataPointer copied(l);
1083 copied->copyAppend(data() + p, data() + p + l);
1087Q_DECLARE_SEQUENTIAL_ITERATOR(List)
1088Q_DECLARE_MUTABLE_SEQUENTIAL_ITERATOR(List)
1090template <
typename T>
1091size_t qHash(
const QList<T> &key, size_t seed = 0)
1092 noexcept(
noexcept(qHashRange(key.cbegin(), key.cend(), seed)))
1094 return qHashRange(key.cbegin(), key.cend(), seed);
1097template <
typename T,
typename AT>
1100 return QtPrivate::sequential_erase(list, t);
1103template <
typename T,
typename Predicate>
1106 return QtPrivate::sequential_erase_if(list, pred);
1110QList<uint> QStringView::toUcs4()
const {
return QtPrivate::convertToUcs4(*
this); }
1114#include <QtCore/qbytearraylist.h>
1115#include <QtCore/qstringlist.h>
\inmodule QtCore\reentrant
constexpr bool operator==(iterator o) const
constexpr bool operator<(iterator other) const
constexpr bool operator<(const_iterator other) const
const_iterator operator-(qsizetype j) const
constexpr bool operator==(pointer p) const
constexpr bool operator>(const_iterator other) const
std::random_access_iterator_tag iterator_category
const T & operator[](qsizetype j) const
const_iterator & operator-=(qsizetype j)
constexpr const_iterator(iterator o)
constexpr const_iterator()=default
const T & operator*() const
constexpr bool operator!=(const_iterator o) const
const_iterator operator+(qsizetype j) const
constexpr bool operator<=(iterator other) const
const value_type element_type
const_iterator & operator++()
constexpr bool operator!=(pointer p) const
constexpr bool operator>(iterator other) const
qsizetype operator-(const_iterator j) const
constexpr bool operator==(const_iterator o) const
constexpr bool operator>=(iterator other) const
const_iterator operator--(int)
const_iterator & operator--()
const_iterator operator++(int)
constexpr bool operator!=(iterator o) const
const_iterator & operator+=(qsizetype j)
friend const_iterator operator+(qsizetype j, const_iterator k)
constexpr bool operator<=(const_iterator other) const
const T * operator->() const
constexpr bool operator>=(const_iterator other) const
constexpr bool operator>(iterator other) const
iterator operator+(qsizetype j) const
iterator & operator-=(qsizetype j)
T & operator[](qsizetype j) const
constexpr bool operator<(const_iterator other) const
constexpr bool operator!=(pointer p) const
constexpr bool operator<=(iterator other) const
constexpr bool operator!=(iterator o) const
constexpr bool operator<=(const_iterator other) const
constexpr bool operator>(const_iterator other) const
constexpr bool operator>=(iterator other) const
constexpr bool operator<(iterator other) const
friend iterator operator+(qsizetype j, iterator k)
std::random_access_iterator_tag iterator_category
constexpr bool operator!=(const_iterator o) const
constexpr bool operator==(const_iterator o) const
constexpr bool operator>=(const_iterator other) const
qsizetype operator-(iterator j) const
constexpr iterator()=default
iterator operator-(qsizetype j) const
constexpr bool operator==(iterator o) const
iterator & operator+=(qsizetype j)
constexpr bool operator==(pointer p) const
void append(const_iterator i1, const_iterator i2)
iterator insert(const_iterator before, parameter_type t)
void removeFirst() noexcept
QList< T > & fill(parameter_type t, qsizetype size=-1)
const_pointer constData() const noexcept
void push_front(rvalue_ref t)
const_iterator begin() const noexcept
bool isDetached() const noexcept
void removeAt(qsizetype i)
QList< T > last(qsizetype n) const
bool isSharedWith(const QList< T > &other) const
QList< T > & operator+=(const QList< T > &l)
QList< T > operator+(const QList< T > &l) &&
reference emplaceFront(Args &&... args)
reference emplace_back(Args &&... args)
const T & constLast() const noexcept
iterator erase(const_iterator begin, const_iterator end)
void resizeForOverwrite(qsizetype size)
QList< T > sliced(qsizetype pos, qsizetype n) const
QList(std::initializer_list< T > args)
constexpr qsizetype max_size() const noexcept
QTypeTraits::compare_eq_result_container< QList, U > operator==(const QList &other) const
iterator insert(qsizetype i, parameter_type t)
bool empty() const noexcept
bool removeOne(const AT &t)
QList< T > toList() const noexcept
QList(InputIterator i1, InputIterator i2)
static QList< T > fromReadOnlyData(const T(&t)[N]) noexcept
static QList< T > fromList(const QList< T > &list) noexcept
QList(qsizetype size, parameter_type t)
const_reference back() const noexcept
qsizetype capacity() const
void swapItemsAt(qsizetype i, qsizetype j)
void push_back(parameter_type t)
QList< T > operator+(const QList< T > &l) const &
const_iterator end() const noexcept
iterator erase(const_iterator pos)
bool endsWith(parameter_type t) const
qsizetype count(const AT &t) const noexcept
bool startsWith(parameter_type t) const
friend qsizetype QtPrivate::lastIndexOf(const QList< V > &list, const U &u, qsizetype from) noexcept
QList< T > operator+(QList< T > &&l) &&
std::reverse_iterator< iterator > reverse_iterator
const_reference at(qsizetype i) const noexcept
constexpr qsizetype size() const noexcept
QList< T > sliced(qsizetype pos) const
QList< T > toVector() const noexcept
T value(qsizetype i) const
void swap(QList &other) noexcept
iterator insert(const_iterator before, qsizetype n, parameter_type t)
QList< T > & operator=(std::initializer_list< T > args)
void move(qsizetype from, qsizetype to)
QList(DataPointer dd) noexcept
const_reverse_iterator crbegin() const noexcept
reference operator[](qsizetype i)
const_iterator constBegin() const noexcept
const_reference operator[](qsizetype i) const noexcept
const_reverse_iterator rbegin() const noexcept
constexpr QList() noexcept=default
void remove(qsizetype i, qsizetype n=1)
const DataPointer & data_ptr() const &
qsizetype removeIf(Predicate pred)
DataPointer & data_ptr() &
std::reverse_iterator< const_iterator > const_reverse_iterator
qsizetype removeAll(const AT &t)
iterator emplace(qsizetype i, Args &&... args)
const T & first() const noexcept
iterator insert(qsizetype i, qsizetype n, parameter_type t)
void append(QList< T > &&l)
reference emplaceBack(Args &&... args)
QList< T > mid(qsizetype pos, qsizetype len=-1) const
QTypeTraits::compare_lt_result_container< QList, U > operator>(const QList &other) const noexcept(noexcept(other< std::declval< QList< U > >()))
void prepend(rvalue_ref t)
QList< T > operator+(QList< T > &&l) const &
QList & assign(std::initializer_list< T > l)
void resize(qsizetype size, parameter_type c)
QList< T > first(qsizetype n) const
const T & constFirst() const noexcept
static constexpr qsizetype maxSize()
iterator emplace(const_iterator before, Args &&... args)
void reserve(qsizetype size)
QList & assign(InputIterator first, InputIterator last)
static QList< T > fromVector(const QList< T > &vector) noexcept
void replace(qsizetype i, parameter_type t)
reverse_iterator rbegin()
void pop_front() noexcept
constexpr bool isEmpty() const noexcept
const T & const_reference
const T & last() const noexcept
constexpr qsizetype count() const noexcept
void removeLast() noexcept
void resize(qsizetype size)
friend auto compareThreeWay(const QList &lhs, const QList &rhs)
const_iterator cend() const noexcept
void append(parameter_type t)
QList< T > & operator+=(parameter_type t)
QTypeTraits::compare_eq_result_container< QList, U > operator!=(const QList &other) const
const_iterator constEnd() const noexcept
const_reverse_iterator rend() const noexcept
T value(qsizetype i, parameter_type defaultValue) const
const_iterator cbegin() const noexcept
QList & assign(qsizetype n, parameter_type t)
QTypeTraits::compare_lt_result_container< QList, U > operator>=(const QList &other) const noexcept(noexcept(std::declval< QList< U > >()< other))
const_pointer data() const noexcept
constexpr qsizetype length() const noexcept
const_reference front() const noexcept
QList< T > & operator+=(QList< T > &&l)
friend qsizetype QtPrivate::indexOf(const QList< V > &list, const U &u, qsizetype from) noexcept
DataPointer && data_ptr() &&
void append(const QList< T > &l)
const_iterator ConstIterator
const_reverse_iterator crend() const noexcept
\macro QT_RESTRICTED_CAST_FROM_ASCII
Combined button and popup list for selecting options.
QString && asString(QString &&s)
constexpr QAnyStringArg qStringLikeToArg(QAnyStringView s) noexcept
qsizetype indexOf(const QList< T > &vector, const U &u, qsizetype from) noexcept
const QString & asString(const QString &s)
qsizetype lastIndexOf(const QList< T > &vector, const U &u, qsizetype from) noexcept
qsizetype lastIndexOf(const QList< V > &list, const U &u, qsizetype from) noexcept
constexpr qsizetype lengthHelperPointer(const Char *data) noexcept
qsizetype indexOf(const QList< V > &list, const U &u, qsizetype from) noexcept
std::is_same< Char, char32_t > IsCompatibleChar32TypeHelper
constexpr bool isLatin1(QLatin1StringView s) noexcept
QString operator""_s(const char16_t *str, size_t size) noexcept
QByteArrayView qToByteArrayViewIgnoringNull(const QByteArrayLike &b) noexcept
Q_DECLARE_TYPEINFO(QByteArrayView, Q_PRIMITIVE_TYPE)
Q_LOGGING_CATEGORY(lcEventDispatcher, "qt.eventdispatcher")
Q_CORE_EXPORT Q_DECL_CONST_FUNCTION unsigned int qt_int_sqrt(unsigned int n)
\inmodule QtCore \title Global Qt Declarations
qsizetype erase(QList< T > &list, const AT &t)
QList(InputIterator, InputIterator) -> QList< ValueType >
qsizetype erase_if(QList< T > &list, Predicate pred)
QString operator+(const QString &s1, QChar s2)
QString operator+(QString &&lhs, const QString &rhs)
qsizetype erase_if(QString &s, Predicate pred)
#define QT_UNICODE_LITERAL(str)
QString operator+(QString &&lhs, QChar rhs)
QString operator+(QChar s1, const QString &s2)
QString operator+(const QString &s1, const QString &s2)
qsizetype erase(QString &s, const T &t)
QList< QList< qInternalCallback > > callbacks
qsizetype indexOf(const AT &t, qsizetype from=0) const noexcept
const Self * self() const
bool contains(const AT &t) const noexcept
QListSpecialMethodsBase()=default
qsizetype lastIndexOf(const AT &t, qsizetype from=-1) const noexcept
QListSpecialMethods()=default
constexpr QAnyStringArg(QAnyStringView v) noexcept
constexpr QLatin1StringArg(QLatin1StringView v) noexcept
QLatin1StringArg()=default
constexpr QStringViewArg(QStringView v) noexcept