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 / Abort when the underlying VecPushFrontArrFastL call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:866:
do { \
if (!VecPushFrontArrFastL((v), (arr), (count))) { \
LOG_FATAL("VecMustPushFrontArrFastL failed"); \
} \
} while (0)- In
Insert.h:780:
/// TAGS: Str, PushFront, Range, LValue, Fast, Must, Abort
///
#define StrMustPushFrontArrFastL(str, arr, count) VecMustPushFrontArrFastL((str), (arr), (count))
///
Last updated on