pub fn compute_ln2(precision: usize) -> DBigExpand description
Compute ln(2) to the given number of decimal digits.
ยงExamples
use oxinum_float::compute_ln2;
let ln2 = compute_ln2(50);
let s = ln2.to_string();
assert!(s.starts_with("0.69314718055994"));