pub fn times<T, U>(a: T, p: U) -> TExpand 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) -> Tcalcurate $pa$ with mutliprecation by doubling
use ring_algorithm::times;
assert_eq!(times::<i32, u64>(2, 16), 32);