Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * Find
(
KeyInitType Key |
Finds an element with the given key in the set. | Containers/Set.h | |
const ElementType * Find
(
KeyInitType Key |
Finds an element with the given key in the set. | Containers/Set.h |
Find(KeyInitType)
Description
Finds an element with the given key in the set.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
ElementType * Find
(
KeyInitType Key
)
A pointer to an element with the given key. If no element in the set has the given key, this will return NULL.
Parameters
| Name | Remarks |
|---|---|
| Key | The key to search for. |
Find(KeyInitType)
Description
Finds an element with the given key in the set.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
const ElementType * Find
(
KeyInitType Key
) const
A const pointer to an element with the given key. If no element in the set has the given key, this will return NULL.
Parameters
| Name | Remarks |
|---|---|
| Key | The key to search for. |