[][src]Trait zkp_u256::NegInline

pub trait NegInline: Sized {
    pub fn neg_inline(&self) -> Self;

    pub fn neg_assign_inline(&mut self) { ... }
pub fn neg(&self) -> Self { ... }
pub fn neg_assign(&mut self) { ... } }

Required methods

pub fn neg_inline(&self) -> Self[src]

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

Loading content...

Provided methods

pub fn neg_assign_inline(&mut self)[src]

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

pub fn neg(&self) -> Self[src]

pub fn neg_assign(&mut self)[src]

Loading content...

Implementors

impl NegInline for U256[src]

Loading content...