Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include | #include "Containers/Array.h" |
Syntax
template<typename ElementType, typename SizeType, bool bReverse>
struct TCheckedPointerIterator
Remarks
Pointer-like iterator type for ranged-for loops which checks that the container hasn't been resized during iteration.
Constructors
| Type | Name | Description | |
|---|---|---|---|
TCheckedPointerIterator
(
const SizeType& InNum, |
This iterator type only supports the minimal functionality needed to support C++ ranged-for syntax. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| TCheckedPointerIterator & | operator-- () |
||
| bool | operator!=
(
const TCheckedPointerIterator& Rhs |
||
| ElementType & | operator* () |
||
| TCheckedPointerIterator & | operator++ () |