VecMustPushFrontArrFastR
Description
Aborting variant of VecPushFrontArrFastR. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying VecPushFrontArrFastR call succeeded; see VecPushFrontArrFastR for the post-state.
Failure
Does not return - aborts via LOG_FATAL / SysAbort when the underlying VecPushFrontArrFastR call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:820:
do { \
if (!VecPushFrontArrFastR((v), (arr), (count))) { \
LOG_FATAL("VecMustPushFrontArrFastR failed"); \
} \
} while (0)
Last updated on