Table of Contents

Class ParsedExpressionDivideBigIntOperator

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

Represents a BigInteger binary divide operator construct.

public sealed class ParsedExpressionDivideBigIntOperator : ParsedExpressionBinaryOperator<BigInteger>
Inheritance
ParsedExpressionDivideBigIntOperator
Inherited Members

Methods

CreateBinaryExpression(Expression, Expression)

Creates an expression.

[Pure]
protected override Expression CreateBinaryExpression(Expression left, Expression right)

Parameters

left Expression

Left argument.

right Expression

Right argument.

Returns

Expression

New Expression.

TryCreateFromOneConstant(Expression, ConstantExpression)

Attempts to create an expression from one constant.

[Pure]
protected override Expression? TryCreateFromOneConstant(Expression left, ConstantExpression right)

Parameters

left Expression

Left argument.

right ConstantExpression

Right constant argument.

Returns

Expression

New Expression or null when it could not be created.

TryCreateFromTwoConstants(ConstantExpression, ConstantExpression)

Attempts to create an expression from two constants.

[Pure]
protected override Expression? TryCreateFromTwoConstants(ConstantExpression left, ConstantExpression right)

Parameters

left ConstantExpression

Left constant argument.

right ConstantExpression

Right constant argument.

Returns

Expression

New Expression or null when it could not be created.