GithubHelp home page GithubHelp logo

Comments (4)

Marwes avatar Marwes commented on July 20, 2024

Asking questions here is fine, no worries.

If you are fine with using the unstable range_stream feature there is a range parser which should do what you want. It might be worth adding the equivalent parser for normal streams as well though. I think you should be able to create a parser like that using the iter method.

In the then call you should be able to write something like

parser(move |input| {
    let mut iter = letter().iter(input);
    let result = iter.by_ref().take(decimal).collect();
    iter.into_result(result)
})

If there are less than decimal 'letter' characters this will still succeed though so you might want to check the result after parsing.

from combine.

jivagoalves avatar jivagoalves commented on July 20, 2024

@Marwes , thanks for your quick reply!

I did see the unstable range_stream feature but wanted to rely on stable ones only. So I'm ignoring it until I have a solution for normal streams. Having said that, is there any way to combine the parsers dynamically (e.g. folding/reducing to have a combined parser)?

from combine.

Marwes avatar Marwes commented on July 20, 2024

Boxing each parser is always possible but I don't think it is a good idea in this case as you would basically need to construct a parser for every different length (and you would need one box per fold so 8 in the case above).

from combine.

jivagoalves avatar jivagoalves commented on July 20, 2024

I see. I guess I'll use the range_stream feature for now. Thanks once again for your valuable input!

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.