finite-fields 0.10.3

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

/// Creates a ternary type named `t2`, with a unit type named `t1`, storing each
/// digit in a `u8`, with two digits.
nary_type! { t2, t1, 3, u8, 2 }

fn main() {}