Class Inc
- Namespace
- xFunc.Maths.Expressions.Programming
- Assembly
- xFunc.Maths.dll
Represents the increment operator.
public class Inc : VariableUnaryExpression, IExpression
- Inheritance
-
Inc
- Implements
- Inherited Members
- Extension Methods
Constructors
Inc(Variable)
Initializes a new instance of the Inc class.
public Inc(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.