Skip to content
ListMustMergeR

ListMustMergeR

Description

Aborting variant of ListMergeR. See that macro for parameter semantics and success-state effects.

Success

Returns to the caller. The underlying ListMergeR call succeeded; see ListMergeR for the post-state.

Failure

Does not return - aborts via LOG_FATAL / SysAbort when the underlying ListMergeR call returns false.

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!ListMergeR((l), (l2))) {                                                                                  \
                LOG_FATAL("ListMustMergeR failed");                                                                        \
            }                                                                                                              \
        } while (0)
Last updated on