[][src]Trait zkp_u256::AddInline

pub trait AddInline<Rhs>: Sized {
    pub fn add_inline(&self, rhs: Rhs) -> Self;

    pub fn add_assign_inline(&mut self, rhs: Rhs) { ... }
pub fn add(&self, rhs: Rhs) -> Self { ... }
pub fn add_assign(&mut self, rhs: Rhs) { ... } }

Required methods

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

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

Loading content...

Provided methods

pub fn add_assign_inline(&mut self, rhs: Rhs)[src]

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

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

pub fn add_assign(&mut self, rhs: Rhs)[src]

Loading content...

Implementors

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

Loading content...