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