Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
Include |
#include "Containers/ArrayView.h" |
Finds element within the array starting from StartIndex and going backwards. 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. |
StartIndex |
Index of element from which to start searching. |