QtCore/qmap.h File Reference
#include <QtCore/qatomic.h>
#include <QtCore/qiterator.h>
#include <QtCore/qlist.h>
#include <map>
#include <new>
bool qMapLessThanKey |
( |
const Key & |
key1, |
|
|
const Key & |
key2 |
|
) |
| |
|
inline |
bool qMapLessThanKey |
( |
Ptr * |
key1, |
|
|
Ptr * |
key2 |
|
) |
| |
|
inline |
Definition at line 110 of file qmap.h.
112 Q_ASSERT(
sizeof(quintptr) ==
sizeof(Ptr *));
113 return quintptr(key1) < quintptr(key2);
bool qMapLessThanKey |
( |
const Ptr * |
key1, |
|
|
const Ptr * |
key2 |
|
) |
| |
|
inline |
Definition at line 116 of file qmap.h.
118 Q_ASSERT(
sizeof(quintptr) ==
sizeof(
const Ptr *));
119 return quintptr(key1) < quintptr(key2);
Go to the source code of this file.