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 |
Ne | Jump if stack value not equals |
Gt | Jump if stack value greater than |
Lt | Jump if stack value less than |
Gte | Jump if stack value greater than or equals |
Lte | Jump if stack value less than or equals |