Skip to content
VecMustPushFrontL

VecMustPushFrontL

Description

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

Success

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

Failure

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

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!VecPushFrontL((v), (val))) {                                                                              \
                LOG_FATAL("VecMustPushFrontL failed");                                                                     \
            }                                                                                                              \
        } while (0)
Last updated on