Class Dec
- Namespace
- xFunc.Maths.Expressions.Programming
- Assembly
- xFunc.Maths.dll
Represents the decrement operator.
public class Dec : VariableUnaryExpression, IExpression
- Inheritance
-
Dec
- Implements
- Inherited Members
- Extension Methods
Constructors
Dec(Variable)
Initializes a new instance of the Dec class.
public Dec(Variable argument)
Parameters
argument
VariableThe variable.
Methods
AnalyzeInternal<TResult>(IAnalyzer<TResult>)
Analyzes the current expression.
protected override TResult AnalyzeInternal<TResult>(IAnalyzer<TResult> analyzer)
Parameters
analyzer
IAnalyzer<TResult>The analyzer.
Returns
- TResult
The analysis result.
Type Parameters
TResult
The type of the result.
AnalyzeInternal<TResult, TContext>(IAnalyzer<TResult, TContext>, TContext)
Analyzes the current expression.
protected override TResult AnalyzeInternal<TResult, TContext>(IAnalyzer<TResult, TContext> analyzer, TContext context)
Parameters
analyzer
IAnalyzer<TResult, TContext>The analyzer.
context
TContextThe context.
Returns
- TResult
The analysis result.
Type Parameters
TResult
The type of the result.
TContext
The type of additional parameter for analyzer.
Clone(Variable?)
Clones this instance of the IExpression.
public override IExpression Clone(Variable? variable = null)
Parameters
variable
VariableThe argument of new expression.
Returns
- IExpression
Returns the new instance of IExpression that is a clone of this instance.
Execute(NumberValue)
Executes this expression.
protected override object Execute(NumberValue number)
Parameters
number
NumberValueThe number.
Returns
- object
A result of the execution.