Code Monkey home page Code Monkey logo

Comments (3)

epage avatar epage commented on June 11, 2024 1

To make sure I understand, the problem is that for incomplete input, you would expect alt to try another branch, rather than error out?

While I can't speak for Geal, I think this runs counter to how nom is setup for the streaming code path. In streaming, the expectation is that a decision shouldn't be made that will be different based on the amount of input that is available. Or in other words, streaming will fail if it doesn't have a definitive match. Take take_while, it could succeed with any amount of input but instead it doesn't succeed unless it finds a byte that it can't capture.

from nom.

Geal avatar Geal commented on June 11, 2024 1

When working with streaming input, the parser should give the same result, independently of how the data was chunked. So for combinators like alt, if the child parser returned Incomplete when missing data, but could have succeeded on the complete data, then alt has to return Incomplete too instead of deciding to try another branch

from nom.

cmleinz avatar cmleinz commented on June 11, 2024 1

Thanks I understand your point. I can also use nom::combinator::complete to supplement if I need to.

from nom.

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.