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