Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCompactSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * Find
(
KeyInitType Key |
Finds an element with the given key in the set. | ||
const ElementType * Find
(
KeyInitType Key |
Finds an element with the given key in the set. |
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/CompactSet.h.inl |
| Include Path | #include "Containers/CompactSet.h.inl" |
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/CompactSet.h.inl |
| Include Path | #include "Containers/CompactSet.h.inl" |
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. |