ValidateIter

Table of Contents

ValidateIter

Description

Validate whether a given Iter object is valid. Not foolproof but will work most of the time. Aborts if provided Iter is not valid.

Parameters

NameDirectionDescription
iinPointer to Iter object to validate.

Success

Continue execution, meaning given Iter object is most probably a valid Iter.

Failure

abort

Usage example (Cross-references)

    /// FAILURE : `abort`
    ///
    #define ValidateStrIter(si) ValidateIter(si)
    
    ///

Share :