[][src]Trait zkp_u256::AddFullInline

pub trait AddFullInline<Rhs>: Sized {
    type High;
    pub fn add_full_inline(&self, rhs: Rhs) -> (Self, Self::High);

    pub fn add_full_assign_inline(&mut self, rhs: Rhs) -> Self::High { ... }
pub fn add_full(&self, rhs: Rhs) -> (Self, Self::High) { ... }
pub fn add_full_assign(&mut self, rhs: Rhs) -> Self::High { ... } }

Associated Types

Loading content...

Required methods

pub fn add_full_inline(&self, rhs: Rhs) -> (Self, Self::High)[src]

Note. Implementers must add the #[inline(always)] attribute

Loading content...

Provided methods

pub fn add_full_assign_inline(&mut self, rhs: Rhs) -> Self::High[src]

Note. Implementers must add the #[inline(always)] attribute By default it redirects to the non-assigned version

pub fn add_full(&self, rhs: Rhs) -> (Self, Self::High)[src]

pub fn add_full_assign(&mut self, rhs: Rhs) -> Self::High[src]

Loading content...

Implementors

impl<'_> AddFullInline<&'_ U256> for U256[src]

type High = u64

Loading content...