TSortedMap::FindKey

Returns the key associated with the specified value. The time taken is O(N) in the number of pairs.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Containers/SortedMap.h"

Syntax

const KeyType * FindKey
(
    ValueInitType Value
) const

Remarks

Returns the key associated with the specified value. The time taken is O(N) in the number of pairs.

Returns

A pointer to the key associated with the specified value, or nullptr if the value isn't contained in this map (only valid until the next change to any key in the map).

Parameters

Parameter

Description

Value

The value to search for.

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