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
template<typename ContextType>
struct TOperatorJumpTable
Remarks
Jump table specifying how to execute an operator with different types
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 |
![]() |
void | MapBinary
(
FuncType InFunc |
Map an expression node to a binary operator with the specified implementation. |
![]() |
void | MapPostUnary
(
FuncType InFunc |
Map an expression node to a post-unary operator with the specified implementation. |
![]() |
void | MapPreUnary
(
FuncType InFunc |
Map an expression node to a pre-unary operator with the specified implementation. |
![]() |
void | MapShortCircuit
(
FuncType InFunc |
|
![]() ![]() |
bool | ShouldShortCircuit
(
const FExpressionToken& Operator, |
Check whether we should short circuit the specified operator |
Typedefs
Name | Description |
---|---|
FBinaryFunction | |
FShortCircuit | |
FUnaryFunction |