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);
449 constexpr size_t MaxSize = maxSize();
450 Q_PRESUME(size_t(d.size) <= MaxSize);
456 constexpr bool isEmpty()
const noexcept {
return size() == 0; }
460 resize_internal(size);
461 if (size >
this->size())
462 d->appendInitialize(size);
464 void resize(qsizetype size, parameter_type c)
466 resize_internal(size);
467 if (size >
this->size())
468 d->copyAppend(size -
this->size(), c);
472 resize_internal(size);
473 if (size >
this->size())
474 d->appendUninitialized(size);
492 if (d->needsDetach()) {
494 DataPointer detached(d.allocatedCapacity());
503 Q_ASSERT_X(size_t(i) < size_t(d->size),
"QList::at",
"index out of range");
508 Q_ASSERT_X(size_t(i) < size_t(d->size),
"QList::operator[]",
"index out of range");
513 void append(parameter_type t) { emplaceBack(t); }
517 if constexpr (DataPointer::pass_parameter_by_value) {
520 emplaceBack(
std::move(t));
529 if constexpr (DataPointer::pass_parameter_by_value) {
532 emplaceFront(
std::move(t));
535 void prepend(parameter_type t) { emplaceFront(t); }
537 template<
typename... Args>
540 template <
typename ...Args>
544 {
return emplace(i, t); }
548 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
549 return insert(before, 1, t);
553 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
554 return insert(std::distance(constBegin(), before), n, t);
558 Q_ASSERT_X(isValidIterator(before),
"QList::insert",
"The specified iterator argument 'before' is invalid");
559 return insert(std::distance(constBegin(), before), std::move(t));
562 if constexpr (DataPointer::pass_parameter_by_value) {
567 return emplace(i,
std::move(t));
577 template <
typename InputIterator, if_input_iterator<InputIterator> =
true>
579 { d->assign(first, last);
return *
this; }
584 return assign(l.begin(), l.end());
589 template <
typename ...Args>
592 Q_ASSERT_X(isValidIterator(before),
"QList::emplace",
"The specified iterator argument 'before' is invalid");
596 template <
typename ...Args>
605 Q_ASSERT_X(i >= 0 && i < d->size,
"QList<T>::replace",
"index out of range");
612 if constexpr (DataPointer::pass_parameter_by_value) {
616 Q_ASSERT_X(i >= 0 && i < d->size,
"QList<T>::replace",
"index out of range");
619 d.data()[i] = std::move(t);
623 void remove(qsizetype i, qsizetype n = 1);
636 template <
typename AT>
638 template <
typename AT>
640 template <
typename AT>
644 template <
typename AT = T>
647 return qsizetype(std::count(data(), data() + size(), t));
651 template <
typename AT = T>
654 return QtPrivate::sequential_erase_with_copy(*
this, t);
657 template <
typename AT = T>
660 return QtPrivate::sequential_erase_one(*
this, t);
663 template <
typename Predicate>
666 return QtPrivate::sequential_erase_if(*
this, pred);
669 T
takeAt(qsizetype i) { T t =
std::move((*
this)[i]); remove(i);
return t; }
670 void move(qsizetype from, qsizetype to)
672 Q_ASSERT_X(from >= 0 && from < size(),
"QList::move(qsizetype, qsizetype)",
"'from' is out-of-range");
673 Q_ASSERT_X(to >= 0 && to < size(),
"QList::move(qsizetype, qsizetype)",
"'to' is out-of-range");
677 T *
const b = d->begin();
679 std::rotate(b + from, b + from + 1, b + to + 1);
681 std::rotate(b + to, b + from, b + from + 1);
705 inline T&
first() { Q_ASSERT(!isEmpty());
return *begin(); }
706 inline const T &
first()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
707 inline const T &
constFirst()
const noexcept { Q_ASSERT(!isEmpty());
return *begin(); }
708 inline T&
last() { Q_ASSERT(!isEmpty());
return *(end()-1); }
709 inline const T &
last()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
710 inline const T &
constLast()
const noexcept { Q_ASSERT(!isEmpty());
return *(end()-1); }
711 inline bool startsWith(parameter_type t)
const {
return !isEmpty() && first() == t; }
712 inline bool endsWith(parameter_type t)
const {
return !isEmpty() && last() == t; }
713 QList<T>
mid(qsizetype pos, qsizetype len = -1)
const;
716 { verify(0, n);
return QList<T>(begin(), begin() + n); }
718 { verify(0, n);
return QList<T>(end() - n, end()); }
720 { verify(pos, 0);
return QList<T>(begin() + pos, end()); }
722 { verify(pos, n);
return QList<T>(begin() + pos, begin() + pos + n); }
724 T
value(qsizetype i)
const {
return value(i, T()); }
725 T
value(qsizetype i, parameter_type defaultValue)
const;
728 Q_ASSERT_X(i >= 0 && i < size() && j >= 0 && j < size(),
729 "QList<T>::swap",
"index out of range");
731 qSwap(d->begin()[i], d->begin()[j]);
742 template <
typename ...Args>
746 {
return d->size == 0; }
761 {
QList n = *
this; n += l;
return n; }
763 {
return std::move(*
this += l); }
765 {
QList n = *
this; n +=
std::move(l);
return n; }
767 {
return std::move(*
this +=
std::move(l)); }
769 { append(t);
return *
this; }
770 inline QList<T> &operator<< (parameter_type t)
771 { append(t);
return *
this; }
772 inline QList<T> &operator<<(
const QList<T> &l)
773 { *
this += l;
return *
this; }
775 { *
this +=
std::move(l);
return *
this; }
777 { append(
std::move(t));
return *
this; }
778 inline QList<T> &operator<<(rvalue_ref t)
779 { append(
std::move(t));
return *
this; }
788 template<qsizetype N>
791 return QList<T>({
nullptr,
const_cast<T *>(t), N });
795template <
typename InputIterator,
796 typename ValueType =
typename std::iterator_traits<InputIterator>::value_type,
797 QtPrivate::IfIsInputIterator<InputIterator> =
true>
801inline void QList<T>::resize_internal(qsizetype newSize)
803 Q_ASSERT(newSize >= 0);
805 if (d->needsDetach() || newSize > capacity() - d.freeSpaceAtBegin()) {
806 d.detachAndGrow(QArrayData::GrowsAtEnd, newSize - d.size,
nullptr,
nullptr);
807 }
else if (newSize < size()) {
808 d->truncate(newSize);
816 if (asize <= capacity() - d.freeSpaceAtBegin()) {
817 if (d->flags() & Data::CapacityReserved)
819 if (!d->isShared()) {
821 d->setFlag(Data::CapacityReserved);
826 DataPointer detached(qMax(asize, size()));
827 detached->copyAppend(d->begin(), d->end());
828 if (detached.d_ptr())
829 detached->setFlag(Data::CapacityReserved);
838 if (d->needsDetach() || size() < capacity()) {
840 DataPointer detached(size());
843 detached->copyAppend(d.data(), d.data() + d.size);
845 detached->moveAppend(d.data(), d.data() + d.size);
850 d->clearFlag(Data::CapacityReserved);
856 Q_ASSERT_X(size_t(i) + size_t(n) <= size_t(d->size),
"QList::remove",
"index out of range");
857 Q_ASSERT_X(n >= 0,
"QList::remove",
"invalid count");
863 d->erase(d->begin() + i, n);
869 Q_ASSERT(!isEmpty());
877 Q_ASSERT(!isEmpty());
884inline T
QList<T>::
value(qsizetype i, parameter_type defaultValue)
const
886 return size_t(i) < size_t(d->size) ? at(i) : defaultValue;
892 d->growAppend(i1.i, i2.i);
898 Q_ASSERT(&other !=
this);
901 if (other.d->needsDetach() || !
std::is_nothrow_move_constructible_v<T>)
902 return append(other);
905 d.detachAndGrow(QArrayData::GrowsAtEnd, other.size(),
nullptr,
nullptr);
906 Q_ASSERT(d.freeSpaceAtEnd() >= other.size());
907 d->moveAppend(other.d->begin(), other.d->end());
911template<
typename... Args>
914 d->emplace(0, std::forward<Args>(args)...);
923 Q_ASSERT_X(size_t(i) <= size_t(d->size),
"QList<T>::insert",
"index out of range");
924 Q_ASSERT_X(n >= 0,
"QList::insert",
"invalid count");
931template <
typename ...Args>
935 Q_ASSERT_X(i >= 0 && i <= d->size,
"QList<T>::insert",
"index out of range");
936 d->emplace(i, std::forward<Args>(args)...);
941template<
typename... Args>
944 d->emplace(d->size, std::forward<Args>(args)...);
951 Q_ASSERT_X(isValidIterator(abegin),
"QList::erase",
"The specified iterator argument 'abegin' is invalid");
952 Q_ASSERT_X(isValidIterator(aend),
"QList::erase",
"The specified iterator argument 'aend' is invalid");
953 Q_ASSERT(aend >= abegin);
956 qsizetype n =
std::distance(abegin, aend);
967 if (d->needsDetach() || newSize > capacity()) {
969 DataPointer detached(d->detachCapacity(newSize));
970 detached->copyAppend(newSize, t);
975 d->assign(d.begin(), d.begin() + qMin(size(), newSize), t);
976 if (newSize > size()) {
977 d->copyAppend(newSize - size(), copy);
978 }
else if (newSize < size()) {
979 d->truncate(newSize);
986template <
typename T,
typename U>
990 from = qMax(from + vector.size(), qsizetype(0));
991 if (from < vector.size()) {
992 auto n = vector.begin() + from - 1;
993 auto e = vector.end();
996 return qsizetype(n - vector.begin());
1001template <
typename T,
typename U>
1005 from += vector.d->size;
1006 else if (from >= vector.size())
1007 from = vector.size() - 1;
1009 auto b = vector.begin();
1010 auto n = vector.begin() + from + 1;
1013 return qsizetype(n - b);
1020template <
typename T>
1021template <
typename AT>
1024 return QtPrivate::indexOf(*self(), t, from);
1027template <
typename T>
1028template <
typename AT>
1031 return QtPrivate::lastIndexOf(*self(), t, from);
1034template <
typename T>
1040 switch (QContainerImplHelper::mid(d.size, &p, &l)) {
1041 case QContainerImplHelper::Null:
1042 case QContainerImplHelper::Empty:
1044 case QContainerImplHelper::Full:
1046 case QContainerImplHelper::Subset:
1051 DataPointer copied(l);
1052 copied->copyAppend(data() + p, data() + p + l);
1056Q_DECLARE_SEQUENTIAL_ITERATOR(List)
1057Q_DECLARE_MUTABLE_SEQUENTIAL_ITERATOR(List)
1059template <
typename T>
1060size_t qHash(
const QList<T> &key, size_t seed = 0)
1061 noexcept(
noexcept(qHashRange(key.cbegin(), key.cend(), seed)))
1063 return qHashRange(key.cbegin(), key.cend(), seed);
1066template <
typename T,
typename AT>
1069 return QtPrivate::sequential_erase(list, t);
1072template <
typename T,
typename Predicate>
1075 return QtPrivate::sequential_erase_if(list, pred);
1079QList<uint> QStringView::toUcs4()
const {
return QtPrivate::convertToUcs4(*
this); }
1083#include <QtCore/qbytearraylist.h>
1084#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
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
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)
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