Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo > API/Runtime/Core/Algo/Algo__Compare
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/Compare.h |
| Include | #include "Algo/Compare.h" |
namespace Algo
{
template<typename InAT, typename InBT>
bool Algo::Compare
(
InAT && InputA,
InBT && InputB
)
}
Remarks
Compares two contiguous containers using operator== to compare pairs of elements. Whether the containers are the same size and operator== returned true for every pair of elements.
Parameters
| Name | 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==. |