1
2
3
4
5
6
7
8
9
10
11
/// Implementation of FieldElement, a generic element of a field.
pub mod element;
pub mod errors;
/// Implementation of quadratic extensions of fields.
pub mod extensions;
/// Implementation of particular cases of fields.
pub mod fields;
/// Field for test purposes.
pub mod test_fields;
/// Common behaviour for field elements.
pub mod traits;