FBinaryFindIndex

Implements binary search for the various cases.

Windows
MacOS
Linux

References

Module

Profiler

Header

/Engine/Source/Developer/Profiler/Public/ProfilerCommon.h

Include

#include "ProfilerCommon.h"

Syntax

class FBinaryFindIndex

Remarks

Implements binary search for the various cases.

Functions

Name Description

Public function Static

int32

 

GreaterEqual

(
    const TArray< T >& Array,
    const T& Item,
    const int32 FirstIndex,
    const int32 LastIndex
)

Executes a binary search for element Item in array Array using the >= operator (i.e. uses the comparison Array[i] >= Item).

Public function Static

int32

 

LessEqual

(
    const TArray< T >& Array,
    const T& Item,
    const int32 FirstIndex,
    const int32 LastIndex
)

Executes a binary search for element Item in array Array using the <= operator (i.e. uses the comparison Array[i] <= Item).

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss