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