pub fn add2(a: &mut [u32], b: &[u32])
Expand description
/Two argument addition of raw slices: a += b
The caller must ensure that a is big enough to store the result - typically this means resizing a to max(a.len(), b.len()) + 1, to fit a possible carry.