Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Algo::AnyOf
(
const RangeType& Range |
Checks if any element in the range is truthy. | Algo/AnyOf.h | |
bool Algo::AnyOf
(
const RangeType& Range, |
Checks if any projection of the elements in the range is truthy. | Algo/AnyOf.h | |
bool Algo::AnyOf
(
const RangeType& Range, |
Checks if any projection of the elements in the range is truthy. | Algo/AnyOf.h |
Algo::AnyOf(const RangeType &)
Description
Checks if any element in the range is truthy.
| Name | Algo::AnyOf |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/AnyOf.h |
| Include Path | #include "Algo/AnyOf.h" |
namespace Algo
{
template<typename RangeType>
bool Algo::AnyOf
(
const RangeType & Range
)
}
true if at least one element is truthy, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Range | The range to check. |
Algo::AnyOf(const RangeType &, ProjectionType)
Description
Checks if any projection of the elements in the range is truthy.
| Name | Algo::AnyOf |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/AnyOf.h |
| Include Path | #include "Algo/AnyOf.h" |
namespace Algo
{
template<typename RangeType, typename ProjectionType>
bool Algo::AnyOf
(
const RangeType & Range,
ProjectionType Projection
)
}
true if at least one projection is truthy, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Range | The range to check. |
| Projection | The projection to apply to each element. |
Algo::AnyOf(const RangeType &, ProjectionType, ENoRef)
Description
Checks if any projection of the elements in the range is truthy. Should be used when the range iterator doesn't return a reference.
| Name | Algo::AnyOf |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Algo/AnyOf.h |
| Include Path | #include "Algo/AnyOf.h" |
namespace Algo
{
template<typename RangeType, typename ProjectionType>
bool Algo::AnyOf
(
const RangeType & Range,
ProjectionType Projection,
ENoRef NoRef
)
}
true if at least one projection is truthy, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Range | The range to check. |
| Projection | The projection to apply to each element. |