unsafe_algebra: bool = falsennan: bool = falseninf: bool = falsensz: bool = falsearcp: bool = falsecontract: bool = falseafn: bool = falsereassoc: bool = falsepub const FastMath = packed struct(u8) {
unsafe_algebra: bool = false, // Legacy
nnan: bool = false,
ninf: bool = false,
nsz: bool = false,
arcp: bool = false,
contract: bool = false,
afn: bool = false,
reassoc: bool = false,
pub const fast = FastMath{
.nnan = true,
.ninf = true,
.nsz = true,
.arcp = true,
.contract = true,
.afn = true,
.reassoc = true,
};
}