#include
<QtCore/qatomic.h>
#include <QtCore/qiterator.h>
#include <QtCore/qlist.h>
#include <map>
#include <new>
Go to the source code of this
file.
Function Documentation
| bool qMapLessThanKey |
( |
const Key & |
key1, |
|
|
const Key & |
key2 |
|
) |
|
[inline] |
| bool qMapLessThanKey |
( |
Ptr * |
key1, |
|
|
Ptr * |
key2 |
|
) |
|
[inline] |
Definition at line 111 of file qmap.h.
{
Q_ASSERT(sizeof(quintptr) == sizeof(Ptr *));
return quintptr(key1) < quintptr(key2);
}
| bool qMapLessThanKey |
( |
const Ptr * |
key1, |
|
|
const Ptr * |
key2 |
|
) |
|
[inline] |
Definition at line 117 of file qmap.h.
{
Q_ASSERT(sizeof(quintptr) == sizeof(const Ptr *));
return quintptr(key1) < quintptr(key2);
}