Sha256: df773aad6cedd95562e3413560f213b141488118f66a7b40a93b0d4740451c34
Contents?: true
Size: 299 Bytes
Versions: 13
Compression:
Stored size: 299 Bytes
Contents
# frozen_string_literal: true module GirFFI # Simple wrapper class to represent the implementation of a VFunc. class VFuncImplementation attr_reader :name, :implementation def initialize(name, implementation) @name = name @implementation = implementation end end end
Version data entries
13 entries across 13 versions & 1 rubygems