Skip to main content

generate_table

Function generate_table 

Source
pub fn generate_table(polynomial: u32) -> [[u32; 256]; 8]
Expand description

Generate a lookup table. The given polynomial is reversed before the generation

ยงExample

use slice_by_8::{crc32,generate_table};

assert_eq!(generate_table(crc32::POLYNOMIAL), crc32::LOOKUP_TABLE);