Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Algo > API/Runtime/Core/Algo/Algo__AllOf
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Algo/AllOf.h |
| Include | #include "Algo/AllOf.h" |
namespace Algo
{
template<typename RangeType, typename ProjectionType>
bool Algo::AllOf
(
const RangeType & Range,
ProjectionType Projection
)
}
Remarks
Checks if every projection of the elements in the range is truthy. true if all the projections are truthy, false otherwise.
Parameters
| Name | Description |
|---|---|
| Range | The range to check. |
| Projection | The projection to apply to each element. |