Orson Peters
Orson Peters
[C-CONV](https://rust-lang-nursery.github.io/api-guidelines/naming.html#ad-hoc-conversions-follow-as_-to_-into_-conventions-c-conv) and [C-CONV-TRAITS](https://rust-lang-nursery.github.io/api-guidelines/interoperability.html#conversions-use-the-standard-traits-from-asref-asmut-c-conv-traits) do not mention each other as possibilities, while both are very closely related (in providing conversions), and as an API designer you might want to choose between...
If you want your machine to remain usable during a compile session usually you want to set the number of jobs lower than your maximum number of cores. But this...
Could the types`__m128bh`, `__m256bh`, `__m512`, `__m512bh`, `__m512d`, `__m512i` be added to bytemuck under an experimental feature flag (or multiple, one for AVX-512 and one for the `bh` types)?
It is stated that YAEP doesn't use Joop Leo's optimization, and that right recursion is fast anyways. And because of the lookahead I do believe this to be true for...
Well, the title says it all.
This fixed compilation with `g++` for me (I think this is what you meant anyway).
I have a feature request I believe to be quite useful when `fd` is combined with any sort of fuzzy-finder tool (e.g. `fzf`), or when returning early results from a...
I like it when a font can disambiguate between zero and the capital letter o, but I'm not a huge fan of the slashed zero (in any font). Would it...
A lot of my use cases for regex involve extracting some information from text with a simple pattern, where full parsing would be overkill. In this scenario I generally just...
This adds `Option::map_or_default` and `Result::map_or_default` which behave exactly like `.map_or_else(Default::default, _)` would, similarly to `.unwrap_or_default()`. [Rendered](https://github.com/orlp/rfcs/blob/option-result-map-or-default/text/3148-option-result-map-or-default.md).