Interface IUnaryExpression
- Namespace
- Albatross.Expression.Nodes
- Assembly
- Albatross.Expression.dll
Represents a unary operation expression that operates on a single operand (e.g., -x, +y).
public interface IUnaryExpression : IExpression, IToken, IHasPrecedence
- Inherited Members
- Extension Methods
Properties
Operand
The operand that this unary operation applies to.
IExpression? Operand { get; set; }
Property Value
Operator
The operator symbol used for this unary operation.
string Operator { get; }