Skip to content
MapMustSetOnlyL

MapMustSetOnlyL

Description

Aborting variant of MapSetOnlyL. See that macro for parameter semantics and success-state effects.

Success

Returns to the caller. The underlying MapSetOnlyL call succeeded; see MapSetOnlyL for the post-state.

Failure

Does not return - aborts via LOG_FATAL / SysAbort when the underlying MapSetOnlyL call returns false.

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!MapSetOnlyL((m), (in_key), (in_value))) {                                                                 \
                LOG_FATAL("MapMustSetOnlyL failed");                                                                       \
            }                                                                                                              \
        } while (0)
Last updated on