pub trait BigUintArrayCompose<const N: usize> {
    // Required method
    fn compose(&self) -> BigUint;
}
Expand description

BigUint array compose helper

Required Methods§

source

fn compose(&self) -> BigUint

Compose limbs into BigUint

Implementations on Foreign Types§

source§

impl BigUintArrayCompose<3> for [BigUint; 3]

source§

impl BigUintArrayCompose<2> for [BigUint; 2]

Implementors§