Adam Niederer

Results 86 comments of Adam Niederer

Hey, thanks for the contribution! It looks like the function in this PR would be useful if you're trying to convert a lot of numbers at once to the same...

Hm, I could definitely see the utility of a cycling function combined with a buffer-local variable. For example, a `number-spellings` setting could specify format strings for all radices in a...

Try `echo -n "👟👜👣👣👦🐁"`. The newline at the end is probably causing the panic, because it's only one byte instead of four.

Yeah, I can strip a newline off of the input and add one to the output. I'll have that in the next release.

Hm, maybe red/green/light-green/white or red/green/teal/blue would work for heatmap-style highlighting. That would preserve the "red is bad; green is good" idea in the fringe, but also provide the user with...

Hey, I'm happy to add the package to NonGNU ELPA, but I'm unfamiliar with the process. I'll see how far I can get with the README and ping Stefan if...

I don't think that's an issue with `faster`. We don't have a crate called `task` in the dependency chain, and I'm having no problems running `cargo doc`. Have you tried...

I'm definitely interested in implementing this before 1.0.0, but I'd like to wait for stdsimd to mature a bit before jumping on it. I'll probably have methods for both static...

You can do something like `arr.par_iter(|chunk| chunk.simd_iter(|vec| ...))` to use both multithreading and SIMD

> AFAIK Faster doesn’t currently provide a way to accelerate filter, with or without Rayon—so you’d just use the normal Rayon filter. That's correct, and it's unlikely that it will...