Josh Karns
Josh Karns
Ah I see. It still seems like an i16 will work, since the i16 range is aprox. `-32000 - 32000`
On the brightside, we now know for sure an i16 would be enough!
@cmpute I strongly disagree with that idea. There are three components to IEEE floating point numbers - the mantissa, exponent, and sign; this function gives you them. If you need...
I've created a C-ish grammar for one of my classes, could this work? https://github.com/jkarns275/mini-rust-parser/blob/master/parser/src/c.pest
wanted to note: I had this program working on the same machine, the only difference is that i installed a new version of my OS. I also think it probably...
Alright, I will take a look at gTile then!
Looks like a leftover from debugging. Good catch 😊
Hi - I think these functions already exist? In `f128/f128_internal/src/f128_t.rs`: ```rust #[inline(always)] pub fn from_bits(d: u128) -> Self { f128::from_arr(unsafe { mem::transmute::(d) }) } #[inline(always)] pub fn to_bits(self) -> u128...
Oh i see. I still need to publish a new version - apologies for that! On Thu, Nov 9, 2023 at 2:00 AM Oscar Gustafsson ***@***.***> wrote: > Thanks for...
I can do this over the next day or two. What is the `Inv` trait?