class Fiddle::Pointer

TODO move this to inter, or maybe a refinement

Public Instance Methods

term_type() click to toggle source
# File lib/upl/runtime.rb, line 7
def term_type
  ::Upl::Extern.PL_term_type self
end
type_string() click to toggle source
# File lib/upl/runtime.rb, line 11
def type_string
  type_int = term_type
  ::Upl::Extern.constants.find{|c| (::Upl::Extern.const_get c) == type_int} || type_int
end