one_entry

Function one_entry 

Source
const fn one_entry(i: usize) -> u64
Expand 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