class GObjectIntrospection::IVFuncInfo

Wraps a GIVFuncInfo struct. Represents a virtual function.

Public Instance Methods

flags() click to toggle source
# File lib/ffi-gobject_introspection/i_vfunc_info.rb, line 7
def flags
  Lib.g_vfunc_info_get_flags self
end
invoker() click to toggle source
# File lib/ffi-gobject_introspection/i_vfunc_info.rb, line 15
def invoker
  @invoker ||= IFunctionInfo.wrap Lib.g_vfunc_info_get_invoker self
end
throws?() click to toggle source
# File lib/ffi-gobject_introspection/i_vfunc_info.rb, line 11
def throws?
  flags.fetch :throws
end