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)
- In
Insert.h:803:
do { \
if (!VecPushFrontArrFastL((v), (arr), (count))) { \
LOG_FATAL("VecMustPushFrontArrFastL failed"); \
} \
} while (0)
Last updated on