const fn one_entry(i: usize) -> u64Expand description
Build one entry of the polynomial‑division table.
We cannot yet write for _ in 0..8 here: for loops rely on
Iterator::next, which is not const on stable Rust. Until the
const_for feature (tracking issue #87575) is stabilized, a while
loop is the only option in a const fn