Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
SizeType Find
(
const ElementType& Item |
Finds element within the array. | Containers/Array.h | |
bool Find
(
const ElementType& Item, |
Finds element within the array. | Containers/Array.h |
Find(const ElementType &)
Description
Finds element within the array.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
SizeType Find
(
const ElementType & Item
) const
Index of the found element. INDEX_NONE otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
See Also
-
FindLast
-
FindLastByPredicate
Find(const ElementType &, SizeType &)
Description
Finds element within the array.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
bool Find
(
const ElementType & Item,
SizeType & Index
) const
True if found. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
| Index | Will contain the found index. |
See Also
-
FindLast
-
FindLastByPredicate