Module prime_data::guide::data_structure[][src]

Expand description

Data Structure

As discussed in the introduction, we need to develop a special data structure for efficiently storing and generating prime numbers. We need to first, create an abstraction of those “bytes” that contain the 8 30-coprime k-values that we mentioned. Then, our data structure will be a list (vector) of those bytes.

Modules

Prime Bytes

Prime Data