VecMustInsertFast
Description
Aborting variant of VecInsertFast. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying VecInsertFast call succeeded; see VecInsertFast for the post-state.
Failure
Does not return - aborts via LOG_FATAL / SysAbort when the underlying VecInsertFast call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:577:
do { \
if (!VecInsertFast((v), (lval), (idx))) { \
LOG_FATAL("VecMustInsertFast failed"); \
} \
} while (0)
Last updated on