lettuce 0.1.3

Healthy lattice consructions in pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod field_scalar;
mod ring_element;

pub use field_scalar::*;
pub use ring_element::*;

pub(crate) use std::fmt::Display;
pub(crate) use std::iter::Product;
pub(crate) use std::iter::Sum;
pub(crate) use std::ops::Add;
pub(crate) use std::ops::AddAssign;
pub(crate) use std::ops::Mul;
pub(crate) use std::ops::MulAssign;
pub(crate) use std::ops::Sub;
pub(crate) use std::ops::SubAssign;
pub(crate) use std::sync::Arc;

pub(crate) use rand::Rng;