Code Monkey home page Code Monkey logo

Comments (2)

Marwes avatar Marwes commented on June 19, 2024

I am guessing you have some sort of expression type which is represented as an enum like

enum Expr {
    Int(i64),
    Identifier(String),
}

If so you can just use the map parser to make them return the the Expr type

choice([env.integer().map(Expr::Int), env.identifier().map(Expr::Identifier)])

Unfortunately you will encounter another problem when you do this as each parser needs to have the same type as well as they are stored in an array which necessitates that all elements have the same type. For small number of alternations the or which allows the parsers to have distinct types as long as they all have the same return type.

For the choice parser it is however possible to cast each of the parser to a trait object which makes sure that they are all the same type.

choice::<&mut [&mut Parser<Input=InputType, Output=Expr>]>(&mut [
    &mut env.integer().map(Expr::Int),
    &mut env.identifier().map(Expr::Identifier)
])

You can see exactly how I do it in the parser I made for embed_lang here though there is some extra complexity there as well to inject location in the expression as well.

from combine.

m-decoster avatar m-decoster commented on June 19, 2024

Thank you for the detailed reply. As for me, this issue can now be closed.

from combine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.