Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TArrayView > API/Runtime/Core/Containers/TArrayView/FindLastByPredicate
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include | #include "Containers/ArrayView.h" |
template<typename Predicate>
SizeType FindLastByPredicate
&40;
Predicate Pred
&41; const
Remarks
Finds element within the array starting from the end. Uses predicate to match element. Index of the found element. INDEX_NONE otherwise.
Parameters
| Name | Description |
|---|---|
| Pred | Predicate taking array element and returns true if element matches search criteria, false otherwise. |