TArrayView::FindLastByPredicate

Finds element within the array starting from the end. Uses predicate to match element.

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
) const

Remarks

Finds element within the array starting from the end. 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.