pub trait FloatBinArithOpWithFastMathFlags:
Op
+ FloatBinArithOp
+ FastMathFlags {
// Provided method
fn new_with_fast_math_flags(
ctx: &mut Context,
lhs: Value,
rhs: Value,
flag: FastmathFlagsAttr,
) -> Self
where Self: Sized { ... }
}Expand description
Floating point binary arithmetic [Op] with FastmathFlagsAttr
Provided Methods§
Sourcefn new_with_fast_math_flags(
ctx: &mut Context,
lhs: Value,
rhs: Value,
flag: FastmathFlagsAttr,
) -> Selfwhere
Self: Sized,
fn new_with_fast_math_flags(
ctx: &mut Context,
lhs: Value,
rhs: Value,
flag: FastmathFlagsAttr,
) -> Selfwhere
Self: Sized,
Create a new floating point binary op with fast math flags set.
Trait Implementations§
impl OpInterfaceMarker for dyn FloatBinArithOpWithFastMathFlags
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".