TArrayView::FindLastByPredicate

Finds element within the array starting from StartIndex and going backwards.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Containers/ArrayView.h"

Syntax

template<typename Predicate>
SizeType FindLastByPredicate
(
    Predicate Pred,
    SizeType StartIndex
) const

Remarks

Finds element within the array starting from StartIndex and going backwards. Uses predicate to match element.

Returns

Index of the found element. INDEX_NONE otherwise.

Parameters

Parameter

Description

Pred

Predicate taking array element and returns true if element matches search criteria, false otherwise.

StartIndex

Index of element from which to start searching.

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