Skip to content
VecMustPushFrontArrFastL

VecMustPushFrontArrFastL

Description

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

Success

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

Failure

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

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!VecPushFrontArrFastL((v), (arr), (count))) {                                                              \
                LOG_FATAL("VecMustPushFrontArrFastL failed");                                                              \
            }                                                                                                              \
        } while (0)
Last updated on