Table of Contents

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

Expressions Expression[]

Properties

Expressions

public Expression[] Expressions { get; init; }

Property Value

Expression[]

Methods

Accept(IVisitor)

Accepts a visitor to process this "Select" statement.

public override void Accept(IVisitor visitor)

Parameters

visitor IVisitor

The visitor that processes this statement.