Skip to main content

BigUintArrayCompose

Trait BigUintArrayCompose 

Source
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl BigUintArrayCompose<2> for [BigUint; 2]

Source§

impl BigUintArrayCompose<3> for [BigUint; 3]

Implementors§