pub fn power_and_count_from_length_exact(
    dim: &Dimension,
    len: u64,
    min_chunks: u32
) -> Option<(u8, u32)>
Expand description

Calculate the highest power and lowest count such that the given length is represented exactly. If the length is not representable even at the quantum level (power==0), return None.