Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
Include |
#include "Containers/ArrayView.h" |
template<typename Predicate>
SizeType FindLastByPredicate
(
Predicate Pred
) const
Finds element within the array starting from the end. Uses predicate to match element.
Index of the found element. INDEX_NONE otherwise.
Parameter |
Description |
---|---|
Pred |
Predicate taking array element and returns true if element matches search criteria, false otherwise. |