[][src]Type Definition ramp::ll::limb::BaseInt

type BaseInt = u32;

Trait Implementations

impl<'a> Add<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the + operator.

impl Add<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the + operator.

impl Add<Limb> for BaseInt[src]

type Output = Limb

The resulting type after applying the + operator.

impl<'a> BitAnd<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the & operator.

impl BitAnd<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the & operator.

impl<'a> BitOr<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the | operator.

impl BitOr<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the | operator.

impl<'a> BitXor<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the ^ operator.

impl BitXor<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the ^ operator.

impl<'a> Div<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the / operator.

impl Div<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the / operator.

impl<'a> Mul<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the * operator.

impl Mul<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the * operator.

impl Mul<Limb> for BaseInt[src]

type Output = Limb

The resulting type after applying the * operator.

impl<'a> Rem<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the % operator.

impl Rem<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the % operator.

impl<'a> Sub<&'a Int> for BaseInt[src]

type Output = Int

The resulting type after applying the - operator.

impl Sub<Int> for BaseInt[src]

type Output = Int

The resulting type after applying the - operator.

impl Sub<Limb> for BaseInt[src]

type Output = Limb

The resulting type after applying the - operator.