Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Description
Finds the last occurrence of the specified value (true/false) in the array, and returns the bit index. If the specified value is not found, INDEX_NONE is returned.
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
int32 FindLast
(
bool bValue
) const
The index of the last occurrence of the specified value (true/false), or INDEX_NONE if not found.
Parameters
| Name | Remarks |
|---|---|
| bValue | The value (true/false) to search for. |