Enum little::Cond [] [src]

pub enum Cond {
    Eq,
    Ne,
    Gt,
    Lt,
    Gte,
    Lte,
}

Jump condition.

Used by CondJump instruction.

Variants

Eq

Jump if stack value equals Mem.

Ne

Jump if stack value not equals Mem.

Gt

Jump if stack value greater than Mem.

Lt

Jump if stack value less than Mem.

Gte

Jump if stack value greater than or equals Mem.

Lte

Jump if stack value less than or equals Mem.

Trait Implementations

Derived Implementations

impl Debug for Cond

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for Cond

fn clone(&self) -> Cond

fn clone_from(&mut self, source: &Self)

impl Copy for Cond