Crate fixit

source ·
Expand description

Converts infix tokens to postfix tokens, otherwise known as https://en.wikipedia.org/wiki/Reverse_Polish_notation.

Enums

An error during infix to postfix conversion.
A input token, presumably from a parsed stream defining an arithmetic-like expression in human-readable (“infix”) order.
An output token.

Traits

Trait required for values used as the BinaryOp arm of an InfixToken or PostfixToken.

Functions

Converts an iterator of InfixToken to a Vec of PostfixToken.