TArrayView::FindLastByPredicate

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

Choose your operating system:

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.