ListMergeL
ListMergeL
Description
Merge two lists and store the result in first list.
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)
Usage examples (Cross-references)
- In
Insert.h:266:
/// FAILURE: Do not return.
///
#define ListMerge(l, l2) ListMergeL((l), (l2))
#endif // MISRA_STD_CONTAINER_LIST_INSERT_H
Last updated on