Type Alias postscript::compact1::Operand

source ·
pub type Operand = Number;
Expand description

An operand.

Aliased Type§

enum Operand {
    Integer(i32),
    Real(f32),
}

Variants§

§

Integer(i32)

An integer number.

§

Real(f32)

A real number.