pub fn times<T, U>(a: T, p: U) -> T
Expand description
calcurate $pa
$ with mutliprecation by doubling
use ring_algorithm::times;
assert_eq!(times::<i32, u64>(2, 16), 32);
pub fn times<T, U>(a: T, p: U) -> T
calcurate $pa
$ with mutliprecation by doubling
use ring_algorithm::times;
assert_eq!(times::<i32, u64>(2, 16), 32);