Skip to content
StrMustInsertL

StrMustInsertL

Description

Aborting variant of the single-char insert family. Same shapes as StrInsert / StrInsertL / StrInsertR.

Success

Returns true.

Failure

Does not return; LOG_FATAL aborts the process.

Usage example (Cross-references)

Usage examples (Cross-references)
    #define StrMustInsertL(str, lval, idx) VecMustInsertL((str), (lval), (idx))
    #define StrMustInsertR(str, rval, idx) VecMustInsertR((str), (rval), (idx))
    #define StrMustInsert(str, val, idx)   StrMustInsertL((str), (val), (idx))
    
    ///
Last updated on