Struct xxcalc::linear_solver::LinearSolverParser [] [src]

pub struct LinearSolverParser {
    pub parser: Parser,
}

Extends PolynomialParser with a solving operator = with minimal precedence.

Fields

Underlying parser (one can use it to extend it furthermore)

Trait Implementations

impl Default for LinearSolverParser
[src]

Creates LinearSolverParser and extends a PolynomialParser.

A linear solving operator = is registered to the PolynomialParser. Its precedence is minimal, so LHS and RHS are always evaluated before solving.

Returns the "default value" for a type. Read more

impl TokensProcessor for LinearSolverParser
[src]

Allows usage of LinearSolverParser as common TokensProcessor