Skip to content

ValidateIter

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

Name Direction Description
i in Pointer to Iter object to validate.

Success

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

Failure

abort

Usage example (Cross-references)

Usage examples (Cross-references)
    /// FAILURE : `abort`
    ///
    #define ValidateStrIter(si) ValidateIter(si)
    
    ///
Last updated on