VecMustPushFrontArrL
Description
Aborting variant of VecPushFrontArrL. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying VecPushFrontArrL call succeeded; see VecPushFrontArrL for the post-state.
Failure
Does not return - aborts via LOG_FATAL / Abort when the underlying VecPushFrontArrL call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:814:
do { \
if (!VecPushFrontArrL((v), (arr), (count))) { \
LOG_FATAL("VecMustPushFrontArrL failed"); \
} \
} while (0)- In
Insert.h:712:
/// TAGS: Str, PushFront, Range, LValue, Must, Abort
///
#define StrMustPushFrontArrL(str, arr, count) VecMustPushFrontArrL((str), (arr), (count))
///
Last updated on