Sha256: 32af2f6e7d3d3832e298e026b29231f0905b0429162755436ec0d860c5031f6f
Contents?: true
Size: 451 Bytes
Versions: 27
Compression:
Stored size: 451 Bytes
Contents
# frozen_string_literal: true module GirFFI # Module implementing the concept of ownership. Owned objects need to have # their memory freed or ref count lowered when they're garbage collected. # Note that this attribute is generally placed on the nested struct of an # object, and the relevant action is performed when the object's finalizer is # run. module Ownable attr_accessor :owned def owned? owned end end end
Version data entries
27 entries across 27 versions & 1 rubygems