Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
qstringview.h File Reference
#include <QtCore/qchar.h>
#include <QtCore/qbytearray.h>
#include <QtCore/qstringliteral.h>
#include <QtCore/qstringalgorithms.h>
#include <string>
#include <QtCore/q20type_traits.h>
+ Include dependency graph for qstringview.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  QtPrivate::IsCompatibleCharTypeHelper< Char >
 
struct  QtPrivate::IsCompatibleCharType< Char >
 
struct  QtPrivate::IsCompatiblePointerHelper< Pointer >
 
struct  QtPrivate::IsCompatiblePointerHelper< Char * >
 
struct  QtPrivate::IsCompatiblePointer< Pointer >
 
struct  QtPrivate::IsContainerCompatibleWithQStringView< T, Enable >
 
struct  QtPrivate::IsContainerCompatibleWithQStringView< T, std::enable_if_t< std::conjunction_v< IsCompatiblePointer< decltype(std::data(std::declval< const T & >()))>, std::is_convertible< decltype(std::size(std::declval< const T & >())), qsizetype >, IsCompatibleCharType< typename std::iterator_traits< decltype(std::begin(std::declval< const T & >()))>::value_type >, std::is_convertible< decltype(std::begin(std::declval< const T & >()) !=std::end(std::declval< const T & >())), bool >, std::negation< std::is_same< std::decay_t< T >, QString > >, std::negation< std::is_same< std::decay_t< T >, QStringView > > > > >
 
class  QStringView
 \inmodule QtCore More...
 

Namespaces

namespace  QtPrivate
 \macro QT_NAMESPACE
 

Functions

 Q_DECLARE_TYPEINFO (QStringView, Q_PRIMITIVE_TYPE)
 
template<typename QStringLike , typename std::enable_if< std::is_same< QStringLike, QString >::value, bool >::type = true>
QStringView qToStringViewIgnoringNull (const QStringLike &s) noexcept
 

Function Documentation

◆ Q_DECLARE_TYPEINFO()

Q_DECLARE_TYPEINFO ( QStringView  ,
Q_PRIMITIVE_TYPE   
)

◆ qToStringViewIgnoringNull()

template<typename QStringLike , typename std::enable_if< std::is_same< QStringLike, QString >::value, bool >::type = true>
template< typename QStringLike > qToStringViewIgnoringNull ( const QStringLike &  s)
inlinenoexcept
Since
5.10

Convert s to a QStringView ignoring {s.isNull()}.

Returns a string view that references {s}' data, but is never null.

This is a faster way to convert a QString to a QStringView, if null QStrings can legitimately be treated as empty ones.

See also
QString::isNull(), QStringView

Definition at line 431 of file qstringview.h.

Referenced by QRegularExpression::anchoredPattern(), QCborContainerPrivate::append(), QString::arg(), QString::arg(), QCborMap::constFind(), QRegularExpression::escape(), QCborMap::operator[](), QCborValue::operator[](), QCborValue::operator[](), qIsEffectiveTLD(), QtPrivate::qStringLikeToArg(), QString::remove(), QLoggingSettingsParser::setContent(), QLocale::toDouble(), QLocale::toFloat(), QLocale::toInt(), QString::tokenize(), QLocale::toLong(), QLocale::toLongLong(), QLocale::toShort(), QLocale::toString(), QLocale::toString(), QLocale::toString(), QLocale::toUInt(), QLocale::toULong(), QLocale::toULongLong(), QLocale::toUShort(), QString::toWCharArray(), and QRegularExpression::wildcardToRegularExpression().

+ Here is the caller graph for this function: