TArray::FindByKey

Finds an item by key (assuming the ElementType overloads operator== for the comparison).

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/Array.h

Include

#include "Containers/Array.h"

Syntax

template<typename KeyType>
ElementType * FindByKey
(
    const KeyType & Key
)

Remarks

Finds an item by key (assuming the ElementType overloads operator== for the comparison). Time Complexity: O(n), starts iteration from the beginning so better performance if Key is in the front

Returns

Pointer to the first matching element, or nullptr if none is found.

Parameters

Parameter

Description

Key

The key to search by.

See Also

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss