8#include <QtCore/qarraydatapointer.h>
9#include <QtCore/qcompare.h>
10#include <QtCore/qnamespace.h>
11#include <QtCore/qhashfunctions.h>
12#include <QtCore/qiterator.h>
13#include <QtCore/qcontainertools_impl.h>
14#include <QtCore/qnamespace.h>
15#include <QtCore/qttypetraits.h>
19#include <initializer_list>
27 template <
typename V,
typename U>
qsizetype indexOf(
const QList<V> &list,
const U &u, qsizetype from)
noexcept;
28 template <
typename V,
typename U>
qsizetype lastIndexOf(
const QList<V> &list,
const U &u, qsizetype from)
noexcept;
38 Self *
self() {
return static_cast<Self *>(
this); }
39 const Self *
self()
const {
return static_cast<
const Self *>(
this); }
42 template <
typename AT = T>
44 template <
typename AT = T>
47 template <
typename AT = T>
50 return self()->indexOf(t) != -1;
64template <>
struct QListSpecialMethods<QByteArray>;
65template <>
struct QListSpecialMethods<QString>;
67#if !defined(QT_STRICT_QLIST_ITERATORS) && (QT_VERSION >= QT_VERSION_CHECK(6
, 6
, 0
)) && !defined(Q_OS_WIN)
68#define QT_STRICT_QLIST_ITERATORS
72template<
typename T>
class QVector :
public QList<T> {};
84 class DisableRValueRefs {};
86 friend class ::tst_QList;
120 friend class QList<T>;
123#ifdef QT_STRICT_QLIST_ITERATORS
130#ifdef QT_COMPILER_HAS_LWG3346
139#ifndef QT_STRICT_QLIST_ITERATORS
140 inline constexpr explicit iterator(T *n) : i(n) {}
144 inline T &
operator[](qsizetype j)
const {
return *(i + j); }
145#ifdef __cpp_lib_three_way_comparison
169#if QT_DEPRECATED_SINCE(6
, 3
) && !defined(QT_STRICT_QLIST_ITERATORS)
171 "the implicit conversion between a QList/QVector::iterator "
195 friend class QList<T>;
197 const T *i =
nullptr;
198#ifdef QT_STRICT_QLIST_ITERATORS
205#ifdef QT_COMPILER_HAS_LWG3346
214#ifndef QT_STRICT_QLIST_ITERATORS
215 inline constexpr explicit const_iterator(
const T *n) : i(n) {}
220 inline const T &
operator[](qsizetype j)
const {
return *(i + j); }
221#ifdef __cpp_lib_three_way_comparison
249#if QT_DEPRECATED_SINCE(6
, 3
) && !defined(QT_STRICT_QLIST_ITERATORS)
251 "the implicit conversion between a QList/QVector::const_iterator "
253 inline operator const T*()
const {
return i; }
279 void resize_internal(qsizetype i);
282 const std::less<
const T*> less = {};
283 return !less(d->end(), i.i) && !less(i.i, d->begin());
286 void verify([[maybe_unused]] qsizetype pos = 0, [[maybe_unused]] qsizetype n = 1)
const
289 Q_ASSERT(pos <= size());
291 Q_ASSERT(n <= size() - pos);
300 constexpr QList()
noexcept =
default;
305 d->appendInitialize(size);
307 QList(qsizetype size, parameter_type t)
311 d->copyAppend(size, t);
318 d->copyAppend(args.begin(), args.end());
326 template <
typename InputIterator, if_input_iterator<InputIterator> =
true>
327 QList(InputIterator i1, InputIterator i2)
329 if constexpr (!
std::is_convertible_v<
typename std::iterator_traits<InputIterator>::iterator_category,
std::forward_iterator_tag>) {
330 std::copy(i1, i2,
std::back_inserter(*
this));
332 const auto distance =
std::distance(i1, i2);
334 d = DataPointer(qsizetype(distance));
337 if constexpr (std::is_same_v<std::decay_t<InputIterator>, iterator> ||
338 std::is_same_v<std::decay_t<InputIterator>, const_iterator>) {
339 d->copyAppend(i1.i, i2.i);
341 d->appendIteratorRange(i1, i2);
349 inline explicit QList(
const String &str)
356 d->appendUninitialized(size);
365 template <
typename U = T,
366 Qt::if_has_qt_compare_three_way<U, U> =
true>
369 return QtOrderingPrivate::lexicographicalCompareThreeWay(lhs.begin(), lhs.end(),
370 rhs.begin(), rhs.end());
373#if defined(__cpp_lib_three_way_comparison) && defined(__cpp_lib_concepts)
374 template <
typename U =
T,
385 template <
typename U = T>
388 if (size() != other.size())
390 if (begin() == other.begin())
394 return std::equal(begin(), end(), other.begin(), other.end());
397 template <
typename U = T>
400 return !(*
this == other);
403#ifndef __cpp_lib_three_way_comparison
404 template <
typename U = T>
405 QTypeTraits::compare_lt_result_container<QList, U> operator<(
const QList &other)
const
406 noexcept(
noexcept(std::lexicographical_compare<
typename QList<U>::const_iterator,
407 typename QList::const_iterator>(
408 std::declval<QList<U>>().begin(), std::declval<QList<U>>().end(),
409 other.begin(), other.end())))
411 return std::lexicographical_compare(begin(), end(),
412 other.begin(), other.end());
415 template <
typename U = T>
419 return other < *
this;
422 template <
typename U = T>
423 QTypeTraits::compare_lt_result_container<QList, U> operator<=(
const QList &other)
const
424 noexcept(
noexcept(other < std::declval<QList<U>>()))
426 return !(other < *
this);
429 template <
typename U = T>
433 return !(*
this < other);
450 constexpr size_t MaxSize = maxSize();
451 [[assume(size_t(d.size) <= MaxSize)]];
458 constexpr bool isEmpty()
const noexcept {
return size() == 0; }
462 resize_internal(size);
463 if (size >
this->size())
464 d->appendInitialize(size);
466 void resize(qsizetype size, parameter_type c)
468 resize_internal(size);
469 if (size >
this->size())
470 d->copyAppend(size -
this->size(), c);
474 resize_internal(size);
475 if (size >
this->size())
476 d->appendUninitialized(size);
494 if (d->needsDetach()) {
496 DataPointer detached(d.allocatedCapacity());
505 Q_ASSERT_X(size_t(i) < size_t(d->size),
"QList::at",
"index out of range");
510 Q_ASSERT_X(size_t(i) < size_t(d->size),
"QList::operator[]",
"index out of range");
515 void append(parameter_type t) { emplaceBack(t); }
519 if constexpr (DataPointer::pass_parameter_by_value) {
522 emplaceBack(
std::move(t));
531 if constexpr (DataPointer::pass_parameter_by_value) {
534 emplaceFront(
std::move(t));
537 void prepend(parameter_type t) { emplaceFront(t); }
539 template<
typename... Args>
542 template <
typename ...Args>
546 {
return emplace(i, t); }
550 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
551 return insert(before, 1, t);
555 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
556 return insert(std::distance(constBegin(), before), n, t);
560 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
561 return insert(std::distance(constBegin(), before), std::move(t));
564 if constexpr (DataPointer::pass_parameter_by_value) {
569 return emplace(i,
std::move(t));
579 template <
typename InputIterator, if_input_iterator<InputIterator> =
true>
581 { d.assign(first, last);
return *
this; }
584 {
return assign(l.begin(), l.end()); }
586 template <
typename ...Args>
589 Q_ASSERT_X(isValidIterator(before),
"QList::emplace",
"The specified iterator argument 'before' is invalid");
593 template <
typename ...Args>
602 Q_ASSERT_X(i >= 0 && i < d->size,
"QList<T>::replace",
"index out of range");
609 if constexpr (DataPointer::pass_parameter_by_value) {
613 Q_ASSERT_X(i >= 0 && i < d->size,
"QList<T>::replace",
"index out of range");
616 d.data()[i] = std::move(t);
620 void remove(qsizetype i, qsizetype n = 1);
633 template <
typename AT>
635 template <
typename AT>
637 template <
typename AT>
641 template <
typename AT = T>
644 return qsizetype(std::count(data(), data() + size(), t));
648 template <
typename AT = T>
651 return QtPrivate::sequential_erase_with_copy(*
this, t);
654 template <
typename AT = T>
657 return QtPrivate::sequential_erase_one(*
this, t);
660 template <
typename Predicate>
663 return QtPrivate::sequential_erase_if(*
this, pred);
666 T
takeAt(qsizetype i) { T t =
std::move((*
this)[i]); remove(i);
return t; }
667 void move(qsizetype from, qsizetype to)
669 Q_ASSERT_X(from >= 0 && from < size(),
"QList::move(qsizetype, qsizetype)",
"'from' is out-of-range");
670 Q_ASSERT_X(to >= 0 && to < size(),
"QList::move(qsizetype, qsizetype)",
"'to' is out-of-range");
674 T *
const b = d->begin();
676 std::rotate(b + from, b + from + 1, b + to + 1);
678 std::rotate(b + to, b + from, b + from + 1);
702 inline T&
first() { Q_ASSERT(!isEmpty());
return *begin(); }
703 inline const T &
first()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
704 inline const T &
constFirst()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
705 inline T&
last() { Q_ASSERT(!isEmpty());
return *(end()-1); }
706 inline const T &
last()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
707 inline const T &
constLast()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
708 inline bool startsWith(parameter_type t)
const {
return !isEmpty() && first() == t; }
709 inline bool endsWith(parameter_type t)
const {
return !isEmpty() && last() == t; }
710 QList<T>
mid(qsizetype pos, qsizetype len = -1)
const;
713 { verify(0, n);
return QList<T>(begin(), begin() + n); }
715 { verify(0, n);
return QList<T>(end() - n, end()); }
717 { verify(pos, 0);
return QList<T>(begin() + pos, end()); }
719 { verify(pos, n);
return QList<T>(begin() + pos, begin() + pos + n); }
721 T
value(qsizetype i)
const {
return value(i, T()); }
722 T
value(qsizetype i, parameter_type defaultValue)
const;
725 Q_ASSERT_X(i >= 0 && i < size() && j >= 0 && j < size(),
726 "QList<T>::swap",
"index out of range");
728 qSwap(d->begin()[i], d->begin()[j]);
739 template <
typename ...Args>
743 {
return d->size == 0; }
758 {
QList n = *
this; n += l;
return n; }
760 {
return std::move(*
this += l); }
762 {
QList n = *
this; n +=
std::move(l);
return n; }
764 {
return std::move(*
this +=
std::move(l)); }
766 { append(t);
return *
this; }
767 inline QList<T> &operator<< (parameter_type t)
768 { append(t);
return *
this; }
769 inline QList<T> &operator<<(
const QList<T> &l)
770 { *
this += l;
return *
this; }
772 { *
this +=
std::move(l);
return *
this; }
774 { append(
std::move(t));
return *
this; }
775 inline QList<T> &operator<<(rvalue_ref t)
776 { append(
std::move(t));
return *
this; }
785 template<qsizetype N>
788 return QList<T>({
nullptr,
const_cast<T *>(t), N });
792template <
typename InputIterator,
793 typename ValueType =
typename std::iterator_traits<InputIterator>::value_type,
794 QtPrivate::IfIsInputIterator<InputIterator> =
true>
798inline void QList<T>::resize_internal(qsizetype newSize)
800 Q_ASSERT(newSize >= 0);
802 if (d->needsDetach() || newSize > capacity() - d.freeSpaceAtBegin()) {
803 d.detachAndGrow(QArrayData::GrowsAtEnd, newSize - d.size,
nullptr,
nullptr);
804 }
else if (newSize < size()) {
805 d->truncate(newSize);
813 if (asize <= capacity() - d.freeSpaceAtBegin()) {
814 if (d->flags() & Data::CapacityReserved)
816 if (!d->isShared()) {
818 d->setFlag(Data::CapacityReserved);
823 DataPointer detached(qMax(asize, size()));
824 detached->copyAppend(d->begin(), d->end());
825 if (detached.d_ptr())
826 detached->setFlag(Data::CapacityReserved);
835 if (d->needsDetach() || size() < capacity()) {
837 DataPointer detached(size());
840 detached->copyAppend(d.data(), d.data() + d.size);
842 detached->moveAppend(d.data(), d.data() + d.size);
847 d->clearFlag(Data::CapacityReserved);
853 Q_ASSERT_X(size_t(i) + size_t(n) <= size_t(d->size),
"QList::remove",
"index out of range");
854 Q_ASSERT_X(n >= 0,
"QList::remove",
"invalid count");
860 d->erase(d->begin() + i, n);
866 Q_ASSERT(!isEmpty());
874 Q_ASSERT(!isEmpty());
881inline T
QList<T>::
value(qsizetype i, parameter_type defaultValue)
const
883 return size_t(i) < size_t(d->size) ? at(i) : defaultValue;
889 d->growAppend(i1.i, i2.i);
895 Q_ASSERT(&other !=
this);
898 if (other.d->needsDetach() || !
std::is_nothrow_move_constructible_v<T>)
899 return append(other);
902 d.detachAndGrow(QArrayData::GrowsAtEnd, other.size(),
nullptr,
nullptr);
903 Q_ASSERT(d.freeSpaceAtEnd() >= other.size());
904 d->moveAppend(other.d->begin(), other.d->end());
908template<
typename... Args>
911 d->emplace(0, std::forward<Args>(args)...);
920 Q_ASSERT_X(size_t(i) <= size_t(d->size),
"QList<T>::insert",
"index out of range");
921 Q_ASSERT_X(n >= 0,
"QList::insert",
"invalid count");
928template <
typename ...Args>
932 Q_ASSERT_X(i >= 0 && i <= d->size,
"QList<T>::insert",
"index out of range");
933 d->emplace(i, std::forward<Args>(args)...);
938template<
typename... Args>
941 d->emplace(d->size, std::forward<Args>(args)...);
948 Q_ASSERT_X(isValidIterator(abegin),
"QList::erase",
"The specified iterator argument 'abegin' is invalid");
949 Q_ASSERT_X(isValidIterator(aend),
"QList::erase",
"The specified iterator argument 'aend' is invalid");
950 Q_ASSERT(aend >= abegin);
953 qsizetype n =
std::distance(abegin, aend);
964 if (d->needsDetach() || newSize > capacity()) {
966 DataPointer detached(d->detachCapacity(newSize));
967 detached->copyAppend(newSize, t);
972 d->assign(d.begin(), d.begin() + qMin(size(), newSize), t);
973 if (newSize > size()) {
974 d->copyAppend(newSize - size(), copy);
975 }
else if (newSize < size()) {
976 d->truncate(newSize);
983template <
typename T,
typename U>
987 from = qMax(from + vector.size(), qsizetype(0));
988 if (from < vector.size()) {
989 auto n = vector.begin() + from - 1;
990 auto e = vector.end();
993 return qsizetype(n - vector.begin());
998template <
typename T,
typename U>
1002 from += vector.d->size;
1003 else if (from >= vector.size())
1004 from = vector.size() - 1;
1006 auto b = vector.begin();
1007 auto n = vector.begin() + from + 1;
1010 return qsizetype(n - b);
1017template <
typename T>
1018template <
typename AT>
1021 return QtPrivate::indexOf(*self(), t, from);
1024template <
typename T>
1025template <
typename AT>
1028 return QtPrivate::lastIndexOf(*self(), t, from);
1031template <
typename T>
1037 switch (QContainerImplHelper::mid(d.size, &p, &l)) {
1038 case QContainerImplHelper::Null:
1039 case QContainerImplHelper::Empty:
1041 case QContainerImplHelper::Full:
1043 case QContainerImplHelper::Subset:
1048 DataPointer copied(l);
1049 copied->copyAppend(data() + p, data() + p + l);
1053Q_DECLARE_SEQUENTIAL_ITERATOR(List)
1054Q_DECLARE_MUTABLE_SEQUENTIAL_ITERATOR(List)
1056template <
typename T>
1057size_t qHash(
const QList<T> &key, size_t seed = 0)
1058 noexcept(
noexcept(qHashRange(key.cbegin(), key.cend(), seed)))
1060 return qHashRange(key.cbegin(), key.cend(), seed);
1063template <
typename T,
typename AT>
1066 return QtPrivate::sequential_erase(list, t);
1069template <
typename T,
typename Predicate>
1072 return QtPrivate::sequential_erase_if(list, pred);
1076QList<uint> QStringView::toUcs4()
const {
return QtPrivate::convertToUcs4(*
this); }
1080#include <QtCore/qbytearraylist.h>
1081#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
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
qsizetype indexOf(const QList< V > &list, const U &u, qsizetype from) noexcept
static constexpr qsizetype lengthHelperPointer(const Char *data) 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)
#define __has_cpp_attribute(x)
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