Navigation
API > API/Runtime > API/Runtime/Core > API/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 | |
| *return | MakeError
(
FExpressionError(LOCTEXT("DivisionByZero","Division by zero.")) |
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. | |
| bool | ShouldShortCircuit
(
const FExpressionToken& Operator, |
Check whether we should short circuit the specified operator |