Trait FloatMathType

Source
pub unsafe trait FloatMathType<'ctx>: BasicType<'ctx> {
    type ValueType: FloatMathValue<'ctx>;
    type MathConvType: IntMathType<'ctx>;
}
Expand description

Represents an LLVM type that can have floating point math operations applied to it.

Required Associated Types§

Source

type ValueType: FloatMathValue<'ctx>

The value instance of a float or float vector type.

Source

type MathConvType: IntMathType<'ctx>

The type for float to int or float vector to int vector conversions.

Implementors§