Class ToDegree
- Namespace
 - xFunc.Maths.Expressions.Units.AngleUnits
 
- Assembly
 - xFunc.Maths.dll
 
Represents the 'todegree' function.
public class ToDegree : UnaryExpression, IExpression
  - Inheritance
 - 
      
      
      ToDegree
 
- Implements
 
- Inherited Members
 
- Extension Methods
 
Constructors
ToDegree(IExpression)
Initializes a new instance of the ToDegree class.
public ToDegree(IExpression argument)
  Parameters
argumentIExpressionThe argument of function.
- See Also
 
Methods
AnalyzeInternal<TResult>(IAnalyzer<TResult>)
Analyzes the current expression.
protected override TResult AnalyzeInternal<TResult>(IAnalyzer<TResult> analyzer)
  Parameters
analyzerIAnalyzer<TResult>The analyzer.
Returns
- TResult
 The analysis result.
Type Parameters
TResultThe type of the result.
AnalyzeInternal<TResult, TContext>(IAnalyzer<TResult, TContext>, TContext)
Analyzes the current expression.
[ExcludeFromCodeCoverage]
protected override TResult AnalyzeInternal<TResult, TContext>(IAnalyzer<TResult, TContext> analyzer, TContext context)
  Parameters
analyzerIAnalyzer<TResult, TContext>The analyzer.
contextTContextThe context.
Returns
- TResult
 The analysis result.
Type Parameters
TResultThe type of the result.
TContextThe type of additional parameter for analyzer.
Clone(IExpression?)
Clones this instance of the IExpression.
public override IExpression Clone(IExpression? argument = null)
  Parameters
argumentIExpressionThe argument of new expression.
Returns
- IExpression
 Returns the new instance of IExpression that is a clone of this instance.
Execute(ExpressionParameters?)
Executes this expression.
public override object Execute(ExpressionParameters? parameters)
  Parameters
parametersExpressionParametersAn object that contains all parameters and functions for expressions.
Returns
- object
 A result of the execution.
Exceptions
- ExecutionException
 The result of argument evaluation is not supported by this expression.
- See Also