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