finite-fields 0.5.2

Traits and types for computations on finite fields.
Documentation
1
2
3
4
5
6
7
8
#![allow(non_camel_case_types)]
#[macro_use] extern crate finite_fields;

/// Creates a septary type named `s3`, with a unit type named `s1`, each digit
/// stored in a `u8`, with three digits.
nary_type! { s3, s1, 7, u8, 3 }

fn main() {}