pub trait PointerMathType<'ctx>: BasicType<'ctx> {
    type ValueType: PointerMathValue<'ctx>;
    type PtrConvType: IntMathType<'ctx>;
}
Expand description

Represents an LLVM type that can have pointer operations applied to it.

Required Associated Types

The value instance of a pointer type.

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

Implementors