Class AmpersandOperator

All Implemented Interfaces:
AnalysisResult, Evaluator, Expression

public class AmpersandOperator
extends AbstractBinaryFullCircuitOperator
Generates a string concatenation of two expressions. If the data type of expression1 or expression2 is not String but widens to String, it is converted to String. If either of the data types does not widen to String, the compiler generates an error. The data type of result is String. If one or both expressions evaluate to Nothing or have null value, they are treated as a string with a value of "".