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