pub trait IntMathValue<'ctx>: BasicValue<'ctx> {
    type BaseType: IntMathType<'ctx>;

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

Represents a value which is permitted in integer math operations

Required Associated Types

Required Methods

Implementors