Jason Hinch

Results 14 comments of Jason Hinch

Currently the linter assumes valid nginx configuration is provided as input and isn't designed to handle syntax issues. The current error does report what characters its expecting next but it...

Hi. I would be interested in helping out add native junit 5 support and I had a couple of questions to make sure I would be heading in the right...

It seems that this is fixed by enabling the `lexer` feature for the `lalrpop-util` crate. Its not clear if the lexer feature should be enabled by default or the tutorial...

I would like to propose the following for the entry API: ```rust impl HashMap { pub fn entry { todo!() } } pub enum Entry), Occupied(OccupiedEntry { _todo: PhantomData {...

I've been thinking about the entry API considerably over the last few days, thinking through the outstanding problems with the API proposed. To reiterate the issues outstanding as I see...

No worries. Thanks for your response! Sounds like a plan then. I might take a look over the next few days. If no one hears from me over the next...

> The WriteGuard would have to: > store the cloned Node / V, mutably (deref to it) and allow mutating it. Currently `V` does not require `Clone`, only `K` is...

Yep. I like the idea of being able to only lock the single bin entry for the Entry API. In order to get the entry API working similar to Java...

If creating and dropping `Owned` within the transfer method is a major source of performance issues, one option might be to share the `Moved` nodes allocated to point to the...

I have been doing a little exploration locally on some of the options discussed so far, but not to the point where it could be put into a draft PR....