andrepd
andrepd
### Is there an existing issue for this? - [X] I have searched the existing issues ### Affected Build(s) Mainline 1429 ### Description of Issue Hi, Yuzu crashes immediately when...
- [x] I have searched open and closed issues for duplicates - [x] I am submitting a bug report for existing functionality that does not work as intended - [x]...
First commit fixes `AsciiChar::is_digit` (and its tests) to have the same behaviour as `char::is_digit`, namely restricting the radix to the range `2 ..= 36`. Second commit silences a handful of...
This macro enables us to write literal, compile-time, fixed-size ascii strings by writing ```rust const HELLO: &[AsciiChar; 15] = ascii::literal!("Hello in ASCII!"); ``` just as we would write literal, compile-time,...
The deriving `Readable` and `Writable` now works properly on structs with const generics. ``` #[derive(speedy::Readable, speedy::Writable)] pub struct Foo ( [T; N] ); ```