[][src]Trait elrond_wasm::BigIntApi

pub trait BigIntApi<BigUint>: Sized + From<BigUint> + From<i64> + From<i32> + Clone + Add<Output = Self> + AddAssign + Sub<Output = Self> + SubAssign + Mul<Output = Self> + MulAssign + Div<Output = Self> + DivAssign + Rem<Output = Self> + RemAssign + Neg + PartialEq<Self> + Eq + PartialOrd<Self> + Ord + PartialEq<i64> + PartialOrd<i64> + Encode + Decode {
    fn abs_uint(&self) -> BigUint;
fn sign(&self) -> Sign;
fn to_signed_bytes_be(&self) -> Vec<u8>;
fn from_signed_bytes_be(bytes: &[u8]) -> Self; fn zero() -> Self { ... } }

Definition of the BigInt type required by the API.

Required methods

fn abs_uint(&self) -> BigUint

fn sign(&self) -> Sign

fn to_signed_bytes_be(&self) -> Vec<u8>

fn from_signed_bytes_be(bytes: &[u8]) -> Self

Loading content...

Provided methods

fn zero() -> Self

Loading content...

Implementors

Loading content...