Class Select
- Namespace
- flx.SILQ.Statements
- Assembly
- flx.SILQ.dll
Represents a "Select" statement in the SILQ language.
public record Select : Statement, IEquatable<Statement>, IEquatable<Select>
- Inheritance
-
Select
- Implements
- Inherited Members
Constructors
Select(Expression[])
Represents a "Select" statement in the SILQ language.
public Select(Expression[] Expressions)
Parameters
ExpressionsExpression[]
Properties
Expressions
public Expression[] Expressions { get; init; }
Property Value
Methods
Accept(IVisitor)
Accepts a visitor to process this "Select" statement.
public override void Accept(IVisitor visitor)
Parameters
visitorIVisitorThe visitor that processes this statement.