Skip to content

VecMustMergeR

Description

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

Success

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

Failure

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

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!VecMergeR((v), (v2))) {                                                                                   \
                LOG_FATAL("VecMustMergeR failed");                                                                         \
            }                                                                                                              \
        } while (0)
    /// TAGS: Str, Merge, RValue, Must, Abort
    ///
    #define StrMustMergeR(str, str2) VecMustMergeR((str), (str2))
    
    ///
Last updated on