Navigation
Unreal Engine C++ API Reference > Runtime > Core > Misc
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/ExpressionParserTypes.h |
Include | #include "Misc/ExpressionParserTypes.h" |
Syntax
struct IOperatorEvaluationEnvironment
Remarks
Structures used for managing the evaluation environment for operators in an expression. This class manages the evaluation context to avoid templating the whole evaluation code on a context type
Functions
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
FExpressionResult | ExecBinary
(
const FExpressionToken& Operator, |
Execute the specified token as a binary operator, if such an overload exists |
![]() ![]() |
FExpressionResult | ExecPostUnary
(
const FExpressionToken& Operator, |
Execute the specified token as a unary operator, if such an overload exists |
![]() ![]() |
FExpressionResult | ExecPreUnary
(
const FExpressionToken& Operator, |
Execute the specified token as a unary operator, if such an overload exists |
![]() ![]() |
bool | ShouldShortCircuit
(
const FExpressionToken& Operator, |
Check whether we should short circuit the specified operator |