ListMergeL

Table of Contents

ListMergeL

Description

Merge two lists and store the result in first list.

Note

Merge list l2 with l with r-value semantics.

Parameters

NameDirectionDescription
lin,outList to insert array items into.
l2inArray to be inserted.

Success

Return

Failure

Do not return.

Usage example (Cross-references)

    /// FAILURE: Do not return.
    ///
    #define ListMerge(l, l2) ListMergeL((l), (l2))
    
    #endif // MISRA_STD_CONTAINER_LIST_INSERT_H

Share :