Skip to content
VecMustInsertFastR

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 / SysAbort when the underlying VecInsertFastR call returns false.

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!VecInsertFastR((v), (rval), (idx))) {                                                                     \
                LOG_FATAL("VecMustInsertFastR failed");                                                                    \
            }                                                                                                              \
        } while (0)
Last updated on