|
libcollection 0.6.2
|
Macros | |
| #define | COL_DSP_END 0 |
| Relate to the end of the collection. | |
| #define | COL_DSP_FRONT 1 |
| Relate to the beginning of the collection. | |
| #define | COL_DSP_BEFORE 2 |
| Before the given property. | |
| #define | COL_DSP_AFTER 3 |
| After the given property. | |
| #define | COL_DSP_INDEX 4 |
| Use index. | |
| #define | COL_DSP_FIRSTDUP 5 |
| Use first among duplicates. | |
| #define | COL_DSP_LASTDUP 6 |
| Use last among duplicates. | |
| #define | COL_DSP_NDUP 7 |
| Use N-th among duplicates. | |
| #define | COL_DSP_LASTDUPNS 8 |
| Use last among nonsequential duplicates. | |
| #define | COL_DSP_NDUPNS 9 |
| Use N-th among nonsequential duplicates. | |
Possible dispositions for insert, extract and delete function(s). Not all of these dispositions are implemented day one. If disposition is not implemented the function will return error ENOSYS.
Other dispositions might be possible in future.
| #define COL_DSP_END 0 |
Relate to the end of the collection.
For "insert":
For "extract" or "delete":
| #define COL_DSP_FRONT 1 |
Relate to the beginning of the collection.
For "insert":
For "extract" or "delete":
| #define COL_DSP_BEFORE 2 |
Before the given property.
For "insert":
For "extract" or "delete":
| #define COL_DSP_AFTER 3 |
After the given property.
For "insert":
For "extract" or "delete":
| #define COL_DSP_INDEX 4 |
Use index.
For "insert":
For "extract" or "delete":
| #define COL_DSP_FIRSTDUP 5 |
Use first among duplicates.
This mode applies only to the list of duplicate properties that are going one after another.
For "insert":
For "extract" or "delete":
| #define COL_DSP_LASTDUP 6 |
Use last among duplicates.
This mode applies only to the list of duplicate properties that are going one after another.
For "insert":
For "extract" or "delete":
| #define COL_DSP_NDUP 7 |
Use N-th among duplicates.
This mode applies only to the list of duplicate properties that are going one after another.
For "insert":
For "extract" or "delete":
| #define COL_DSP_LASTDUPNS 8 |
Use last among nonsequential duplicates.
This mode applies to the list of duplicates that might be scattered across the collection
For "insert":
For "extract" or "delete":
| #define COL_DSP_NDUPNS 9 |
Use N-th among nonsequential duplicates.
This mode applies only to the list of duplicate properties that are going one after another.
For "insert":
For "extract" or "delete":