Sha256: 9dc2a4630a44468aae6e09de05551d322cab71e8e635058dd4abf856a2d0653d
Contents?: true
Size: 366 Bytes
Versions: 9
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true module GObjectIntrospection # Wraps a GIVFuncInfo struct. # Represents a virtual function. class IVFuncInfo < ICallableInfo def flags Lib.g_vfunc_info_get_flags self end def throws? flags.fetch :throws end def invoker IFunctionInfo.wrap Lib.g_vfunc_info_get_invoker self end end end
Version data entries
9 entries across 9 versions & 1 rubygems