Giter VIP home page Giter VIP logo

Comments (6)

Marwes avatar Marwes commented on June 6, 2024

Yes he is, there should be another deref there. Thanks for noticing. I never actually tested boxed parsers since I did not have any need for them. Box trait objects should be useful but it seems that there may be another bug for them rust-lang/rust#21379.
Fixed in 20d35d2.

from combine.

oderwat avatar oderwat commented on June 6, 2024

OK. Isn't this the same case just above? https://github.com/Marwes/parser-combinators/blob/20d35d26527e9c7edcb5d3632d21bd2b7782d5a7/src/primitives.rs#L227

from combine.

Marwes avatar Marwes commented on June 6, 2024

Nope, there is a &mut P there which gives

*(&mut P)  == P

The bug was because of &mut Box

*(&mut Box<P>) == Box<P> (which derefs to &mut Box<P> again) 
**(&mut Box<P>) == P

Edit: The reasoning above is slightly wrong but there is still not infinite recursion in the first case

*(&mut &mut P)  == &mut P (which chooses the function for P)

Arguably there should be another deref to be clearer though

from combine.

oderwat avatar oderwat commented on June 6, 2024

I see. I think I had something like this in some code where I played with box myself and did not recognize this pattern there. Thank you for the explanation!

from combine.

Marwes avatar Marwes commented on June 6, 2024

Lots of edits there sorry, my brain didn't keep up with the typing since I already knew that there is no issue since I am using the &mut P impl in a few places.

from combine.

oderwat avatar oderwat commented on June 6, 2024

What I took out of it is the part that if it is "borrow boxed" there are two * needed to get to the content.

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.