TArrayView::FindLast

Finds element within the array starting from the end.

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

bool FindLast
(
    const ElementType & Item,
    SizeType & Index
) const

Remarks

Finds element within the array starting from the end.

Returns

True if found. False otherwise.

Parameters

Parameter

Description

Item

Item to look for.

Index

Output parameter. Found index.