A storage structure for entries with a sorting key and a payload. More...
#include <Common.hpp>
Public Member Functions | |
permutation_entry (V value, P payload) | |
Default constructor. More... | |
Public Attributes | |
V | value |
The sorting key. | |
P | payload |
The payload. | |
Friends | |
bool | operator< (const permutation_entry &a, const permutation_entry &b) |
Performs a comparison on the basis of sorting keys. More... | |
A storage structure for entries with a sorting key and a payload.
|
inline |
Default constructor.
value | the sorting key. |
payload | the payload. |
|
friend |
Performs a comparison on the basis of sorting keys.
a | the left hand side. |
b | the right hand side. |