Table of Contents

Class ParsedExpressionInvoke

Namespace
LfrlAnvil.Computable.Expressions.Constructs.Variadic
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents a delegate invocation construct.

public sealed class ParsedExpressionInvoke : ParsedExpressionVariadicFunction
Inheritance
ParsedExpressionInvoke
Inherited Members

Constructors

ParsedExpressionInvoke(bool)

Creates a new ParsedExpressionInvoke instance.

public ParsedExpressionInvoke(bool foldConstantsWhenPossible = true)

Parameters

foldConstantsWhenPossible bool

Specifies whether or not invocations with all parameters being constant and target being constant should be resolved immediately as constant expression. Equal to true by default.

Properties

FoldConstantsWhenPossible

Specifies whether or not invocations with all parameters being constant and target being constant should be resolved immediately as constant expression.

public bool FoldConstantsWhenPossible { get; }

Property Value

bool

Methods

Process(IReadOnlyList<Expression>)

Processes this construct.

[Pure]
protected override Expression Process(IReadOnlyList<Expression> parameters)

Parameters

parameters IReadOnlyList<Expression>

Parameters to process.

Returns

Expression

New Expression.