C# Класс xFunc.Maths.Parser

The parser for mathematical expressions.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Parse ( IEnumerable tokens ) : IExpression

Parses the specified function.

Parser ( ) : System

Initializes a new instance of the Parser class with default implementations of IExpressionFactory.

Parser ( IExpressionFactory factory ) : System

Initializes a new instance of the Parser class.

Приватные методы

Метод Описание
ConvertToReversePolishNotation ( IEnumerable tokens ) : IEnumerable
ConvertTokensToExpressions ( IEnumerable tokens ) : IEnumerable

Описание методов

Parse() публичный Метод

Parses the specified function.
public Parse ( IEnumerable tokens ) : IExpression
tokens IEnumerable The list of tokens.
Результат IExpression

Parser() публичный Метод

Initializes a new instance of the Parser class with default implementations of IExpressionFactory.
public Parser ( ) : System
Результат System

Parser() публичный Метод

Initializes a new instance of the Parser class.
public Parser ( IExpressionFactory factory ) : System
factory IExpressionFactory The factory.
Результат System