enum FastMathKind [src]

Fields

normal
fast

Members

Source

pub const FastMathKind = enum { normal, fast, pub fn toCallKind(self: FastMathKind) Function.Instruction.Call.Kind { return switch (self) { .normal => .normal, .fast => .fast, }; } }