Navigation
API > API/Runtime > API/Runtime/Core
| Name | TOperatorEvaluationEnvironment |
| Type | struct |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/ExpressionParserTypes.h |
| Include Path | #include "Misc/ExpressionParserTypes.h" |
Syntax
template<typename ContextType, typename CharType>
struct TOperatorEvaluationEnvironment : public TIOperatorEvaluationEnvironment< CharType >
Inheritance Hierarchy
- TIOperatorEvaluationEnvironment → TOperatorEvaluationEnvironment
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOperatorEvaluationEnvironment
(
const TOperatorJumpTable< ContextType, CharType >& InOperators, |
Misc/ExpressionParserTypes.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Context | const ContextType * | Misc/ExpressionParserTypes.h | ||
| Operators | const TOperatorJumpTable< ContextType > & | Misc/ExpressionParserTypes.h |
Functions
Public
Overridden from TIOperatorEvaluationEnvironment
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual FExpressionResult ExecBinary
(
const TExpressionToken< CharType >& Operator, |
Execute the specified token as a binary operator, if such an overload exists | Misc/ExpressionParserTypes.h | |
virtual FExpressionResult ExecPostUnary
(
const TExpressionToken< CharType >& Operator, |
Execute the specified token as a unary operator, if such an overload exists | Misc/ExpressionParserTypes.h | |
virtual FExpressionResult ExecPreUnary
(
const TExpressionToken< CharType >& Operator, |
Execute the specified token as a unary operator, if such an overload exists | Misc/ExpressionParserTypes.h | |
virtual bool ShouldShortCircuit
(
const TExpressionToken< CharType >& Operator, |
Check whether we should short circuit the specified operator | Misc/ExpressionParserTypes.h |