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