prefix-expression

[ bsd3, library, text ] [ Propose Tags ]

convert infix to prefix expression


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.2.0, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6
Dependencies base (>=4.7 && <5), regex-pcre-builtin [details]
License BSD-3-Clause
Copyright Copyright: © 2018 Vonfry
Author Vonfry
Maintainer vonfry314@gmail.com
Category Text
Home page https://github.com/VonFry/prefix-expression
Uploaded by vonfry at 2018-01-29T13:23:32Z
Distributions NixOS:1.2.6
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 4626 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-01-29 [all 1 reports]

Readme for prefix-expression-1.2.3

[back to package description]

lang: haskell Travis Master Travis Dev Hackage

ParseExpression

It converts infix expression to prefix expression.

Usage

import Text.Exp.Prefix (fromInfix)

fromInfix "1 + 3"

-- return: "+ 1 3"