pub 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

The value instance of a float or float vector type.

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

Implementors