Sha256: 9f77e0988fbdf7ab06ca4360764b93a04b495c738363fc8cf7c4e983a395096a
Contents?: true
Size: 379 Bytes
Versions: 13
Compression:
Stored size: 379 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 @invoker ||= IFunctionInfo.wrap Lib.g_vfunc_info_get_invoker self end end end
Version data entries
13 entries across 13 versions & 1 rubygems