llogiq

Results 228 comments of llogiq

Took me a while to read through, but looks good to me. r=me with the conflicts fixed. @bors delegate

Oops, missed a plus sign. @bors delegate+

There's now an example that shows usage on both functions and methods.

It's on my TODO list, once I've sorted out the alloca RFC...

I don't think this should be a blocker. It's only because Fst derefs to FstRef, so implementing it on the latter might allow people to use it even if they...

Currently we panic if any bit gets shifted out, which is probably overdoing it.

Jarcho seems to be busy recently, so perhaps r? @blyxyas

Finally I got around to looking into your list. I found that most lints will already ignore test code if configured so: * `dbg_macro` has an [allow-dbg-in-tests](https://doc.rust-lang.org/nightly/clippy/lint_configuration.html#allow-dbg-in-tests) configuration. If you...

First, check whether the closure input pattern already does a deref (`|&a| ..`). If so, we just remove the deref. Otherwise, we can either avoid linting, lint without suggestion or...