llogiq

Results 228 comments of llogiq

`Deref` and `DerefMut` come to mind.

> Could I suggest [`AsFd`](https://doc.rust-lang.org/nightly/std/os/unix/io/trait.AsFd.html) too? Note that it's currently only in Nightly. Likely behind a feature flag.

Do you happen to either have or know such a project?

I should take the time to convert Momo to Watt.

To elaborate, `cargo check` only parses and type-checks the code,whereas `cargo clippy` runs a battery of lints (which is slower but will find more things worthy of improvement).

C++ already had this (even if some of them turned out to be costly). We now have negative cost abstractions!

I've moved the benchmarks to `benches/* in #3 and may change the benchmarks to use criterion-rs (to allow running on stable and get more stable results).

I don't see the great benefit of thiserror compared to a plain declarative macro, and the latter certainly compiles faster. Btw. it's often a good idea to have specific error...

Does anyone know a way to implement a fallback so that we can use intrinsics and fall back to the generic version if that fails? Otherwise we might add a...

You can use the `generic-simd` feature to build code without SIMD intrinsics.