[][src]Function num_bigint_dig::algorithms::add2

pub fn add2(a: &mut [u64], b: &[u64])

/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.