FBlueprintActionFilter::operator|=

Appends another filter to be utilized in [IsFiltered()](API\Editor\BlueprintGraph\FBlueprintActionFilter\IsFiltered) queries, extending the query to be: IsFilteredByThis() || Rhs.IsFiltered()

Windows
MacOS
Linux

References

Module

BlueprintGraph

Header

/Engine/Source/Editor/BlueprintGraph/Public/BlueprintActionFilter.h

Include

#include "BlueprintActionFilter.h"

Source

/Engine/Source/Editor/BlueprintGraph/Private/BlueprintActionFilter.cpp

Syntax

FBlueprintActionFilter const & operator|=
(
    FBlueprintActionFilter const & Rhs
)

Remarks

Appends another filter to be utilized in IsFiltered() queries, extending the query to be: IsFilteredByThis() || Rhs.IsFiltered()

Appending additional filters can hinder performance (as the additional filter has to loop over its tests foreach database entry)

Returns

This.

Parameters

Parameter

Description

Rhs

The filter to append to this one.

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