macro_rules! const_monty_form {
($name:ident, $modulus:ident) => { ... };
($name:ident, $modulus:ident, $doc:expr) => { ... };
}Expand description
Creates a type alias to ConstMontyForm with the given ConstMontyParams.
ยงUsage
use crypto_bigint::{U256, modular::ConstMontyParams, const_monty_form};
const_monty_form!(MyFieldElement, MyModulus, "My field element");