pub trait FloatMathValue<'ctx>: BasicValue<'ctx> {
    type BaseType: FloatMathType<'ctx>;

    fn new(value: LLVMValueRef) -> Self;
}
Expand description

Represents a value which is permitted in floating point math operations

Required Associated Types

Required Methods

Implementors