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