ListMergeL
- Macro
- October 8, 2025
Table of Contents
ListMergeL
ListMergeL
Description
Merge two lists and store the result in first list.
Note
Merge list l2
with l
with r-value semantics.
Parameters
Name | Direction | Description |
---|---|---|
l | in,out | List to insert array items into. |
l2 | in | Array to be inserted. |
Success
Return
Failure
Do not return.
Usage example (Cross-references)
- In
Insert.h:266
:
/// FAILURE: Do not return.
///
#define ListMerge(l, l2) ListMergeL((l), (l2))
#endif // MISRA_STD_CONTAINER_LIST_INSERT_H