Is there a way to efficiently create an i32 from a set of u8s in Rust?
I have 6 u8s (I’ll call them a,b,c,d,e,f) that can each range between 0b1 and 0b1111111. I need to compute the difference of the two groups of 3 as a continuous set of bits i.e. (c..b..a) – (d..e..f).