Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RangeCheck
(
SizeType Index |
Checks if index is in array range. | Containers/Array.h | |
void RangeCheck
(
SizeType Index, |
Checks if a range of indices are in the array range. | Containers/Array.h |
RangeCheck(SizeType)
Description
Checks if index is in array range.
| Name | RangeCheck |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
void RangeCheck
(
SizeType Index
) const
Parameters
| Name | Remarks |
|---|---|
| Index | Index to check. |
RangeCheck(SizeType, SizeType)
Description
Checks if a range of indices are in the array range.
| Name | RangeCheck |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
void RangeCheck
(
SizeType Index,
SizeType Count
) const
Parameters
| Name | Remarks |
|---|---|
| Index | Index of the start of the range to check. |
| Count | Number of elements in the range. |