Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TSPtrArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE int32_t Find
(
const ElementType* Item |
Finds element within the array (by address comparison). | uLang/Common/Containers/SharedPointerArray.h | |
ULANG_FORCEINLINE int32_t Find
(
const PointerType& Item |
uLang/Common/Containers/SharedPointerArray.h | ||
ULANG_FORCEINLINE bool Find
(
const ElementType* Item, |
Finds element within the array (by address comparison). | uLang/Common/Containers/SharedPointerArray.h | |
ULANG_FORCEINLINE bool Find
(
const PointerType& Item, |
uLang/Common/Containers/SharedPointerArray.h |
Find(const ElementType *)
Description
Finds element within the array (by address comparison).
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE int32_t Find
(
const ElementType * Item
) const
Index of the found element. IndexNone otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
See Also
-
FindLast
-
FindLastByPredicate
Find(const PointerType &)
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE int32_t Find
(
const PointerType & Item
) const
Find(const ElementType *, int32_t &)
Description
Finds element within the array (by address comparison).
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE bool Find
(
const ElementType * Item,
int32_t & 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
Find(const PointerType &, int32_t &)
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE bool Find
(
const PointerType & Item,
int32_t & Index
) const