Algo::NoneOf

Checks if no projection of the elements in the range is truthy.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Algo/NoneOf.h"

Syntax

namespace Algo
{
    template<typename RangeType, typename ProjectionType>
    bool Algo::NoneOf
    (
        const RangeType & Range,
        ProjectionType Projection,
        ENoRef NoRef
    )
}

Remarks

Checks if no projection of the elements in the range is truthy. Should be used when the range iterator doesn't return a reference.

Returns

true if none of the projections are truthy, false otherwise.

Parameters

Parameter

Description

Range

The range to check.

Projection

The projection to apply to each element.

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