ValidateIter
- Macro
- August 22, 2025
Table of Contents
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)
- In
StrIter.h:21
:
/// FAILURE : `abort`
///
#define ValidateStrIter(si) ValidateIter(si)
///