pub trait PointerMathValue<'ctx>: BasicValue<'ctx> {
    type BaseType: PointerMathType<'ctx>;

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

Required Associated Types

Required Methods

Implementors