Algo::Compare

Compares two contiguous containers using operator== to compare pairs of elements.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Algo/Compare.h

Include

#include "Algo/Compare.h"

Syntax

namespace Algo
{
    template<typename InAT, typename InBT>
    constexpr bool Algo::Compare
    (
        InAT && InputA,
        InBT && InputB
    )
}

Remarks

Compares two contiguous containers using operator== to compare pairs of elements.

Returns

Whether the containers are the same size and operator== returned true for every pair of elements.

Parameters

Parameter

Description

InputA

Container of elements that are used as the first argument to operator==.

InputB

Container of elements that are used as the second argument to operator==.

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