![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtCore More...
Related Symbols | |
(Note that these are not member symbols.) | |
template< class T > QDebug | operator<< (QDebug debug, const QList< T > &list) |
Writes the contents of list to debug. | |
template< class T, qsizetype P > QDebug | operator<< (QDebug debug, const QVarLengthArray< T, P > &array) |
template< typename T, typename Alloc > QDebug | operator<< (QDebug debug, const std::list< T, Alloc > &vec) |
template< typename T, typename Alloc > QDebug | operator<< (QDebug debug, const std::vector< T, Alloc > &vec) |
template< typename T, std::size_t N > QDebug | operator<< (QDebug debug, const std::array< T, N > &array) |
template< typename T > QDebug | operator<< (QDebug debug, const QSet< T > &set) |
Writes the contents of set to debug. | |
template< class Key, class T > QDebug | operator<< (QDebug debug, const QMap< Key, T > &map) |
Writes the contents of map to debug. | |
template< class Key, class T > QDebug | operator<< (QDebug debug, const QMultiMap< Key, T > &map) |
Writes the contents of map to debug. | |
template< typename Key, typename T, typename Compare, typename Alloc > QDebug | operator<< (QDebug debug, const std::map< Key, T, Compare, Alloc > &map) |
template< typename Key, typename T, typename Compare, typename Alloc > QDebug | operator<< (QDebug debug, const std::multimap< Key, T, Compare, Alloc > &map) |
template< typename Key, typename Compare, typename Alloc > QDebug | operator<< (QDebug debug, const std::multiset< Key, Compare, Alloc > &multiset) |
template< typename Key, typename Compare, typename Alloc > QDebug | operator<< (QDebug debug, const std::set< Key, Compare, Alloc > &set) |
template< typename Key, typename T, typename Hash, typename KeyEqual, typename Alloc > QDebug | operator<< (QDebug debug, const std::unordered_map< Key, T, Hash, KeyEqual, Alloc > &map) |
template< typename Key, typename Hash, typename KeyEqual, typename Alloc > QDebug | operator<< (QDebug debug, const std::unordered_set< Key, Hash, KeyEqual, Alloc > &unordered_set) |
template< class Key, class T > QDebug | operator<< (QDebug debug, const QHash< Key, T > &hash) |
Writes the contents of hash to debug. | |
template< class Key, class T > QDebug | operator<< (QDebug debug, const QMultiHash< Key, T > &hash) |
Writes the contents of hash to debug. | |
template< class T1, class T2 > QDebug | operator<< (QDebug debug, const std::pair< T1, T2 > &pair) |
Writes the contents of pair to debug. | |
template< typename T > QDebug | operator<< (QDebug debug, const QContiguousCache< T > &cache) |
Writes the contents of cache to debug. | |
template< typename T > QDebug | operator<< (QDebug debug, const QFlags< T > &flags) |
operator<< (QDebug d, QAnyStringView s) | |
\inmodule QtCore
The QDebug class provides an output stream for debugging information.
QDebug is used whenever the developer needs to write out debugging or tracing information to a device, file, string or console.
|
Outputs s to debug stream d.
If {d.quotedString()} is
true
, indicates which encoding the string is in. If you just want the string data, use visit() like this:
Definition at line 671 of file qanystringview.cpp.
|
Writes flags to debug.
|