Sha256: 5425d52bb4a3cec1d59162fad725ae3170c75ce129a57157aec871dc24bbd912
Contents?: true
Size: 499 Bytes
Versions: 9
Compression:
Stored size: 499 Bytes
Contents
# frozen_string_literal: true module GirFFI # Represents the type of the receiver of a signal or vfunc, conforming, as # needed, to the interface of GObjectIntrospection::ITypeInfo class ReceiverTypeInfo include InfoExt::ITypeInfo def initialize(interface_info) @interface_info = interface_info end def interface @interface_info end def tag :interface end def pointer? false end def array_length -1 end end end
Version data entries
9 entries across 9 versions & 1 rubygems