class RLTK::CG::BasicIntType

All types that represent integers of a given width inherit from this class.

@abstract

Public Instance Methods

width() click to toggle source

@return [Integer] Number of bits used to represent an integer type.

# File lib/rltk/cg/type.rb, line 147
def width
        @width ||= Bindings.get_int_type_width(@ptr)
end