![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
Functions | |
| template<typename TSymbol > | |
| TOptional< FExpressionError > | ConsumeOperator (FExpressionTokenConsumer &Consumer) |
| TOptional< FExpressionError > | ConsumeNumber (FExpressionTokenConsumer &Consumer) |
| void | UnescapeQuotedString (FString &Str, const TCHAR InQuoteChar) |
| FTextToken | CreateTextTokenFromUnquotedString (FString InString) |
| TOptional< FExpressionError > | ConsumeTextImpl (FExpressionTokenConsumer &Consumer, const TFunctionRef< bool(TCHAR)> IsBreakingCharacter) |
| TOptional< FExpressionError > | ConsumeBasicText (FExpressionTokenConsumer &Consumer) |
| TOptional< FExpressionError > | ConsumeComplexText (FExpressionTokenConsumer &Consumer) |
| TOptional< FExpressionError > TextFilterExpressionParser::ConsumeBasicText | ( | FExpressionTokenConsumer & | Consumer | ) |
Consume the basic text from the specified consumer's stream
| TOptional< FExpressionError > TextFilterExpressionParser::ConsumeComplexText | ( | FExpressionTokenConsumer & | Consumer | ) |
Consume the basic text from the specified consumer's stream
| TOptional< FExpressionError > TextFilterExpressionParser::ConsumeNumber | ( | FExpressionTokenConsumer & | Consumer | ) |
Consume a number from the specified consumer's stream, if one exists at the current read position
| TOptional< FExpressionError > TextFilterExpressionParser::ConsumeOperator | ( | FExpressionTokenConsumer & | Consumer | ) |
Consume an operator from the specified consumer's stream, if one exists at the current read position
| TOptional< FExpressionError > TextFilterExpressionParser::ConsumeTextImpl | ( | FExpressionTokenConsumer & | Consumer, |
| const TFunctionRef< bool(TCHAR)> | IsBreakingCharacter | ||
| ) |
Consume the text from the specified consumer's stream
| FTextToken TextFilterExpressionParser::CreateTextTokenFromUnquotedString | ( | FString | InString | ) |
Given a potential string, we produce a final FTextToken for it using the correct comparison mode (as inferred from the given string)