Sha256: 50269cc6962e92e03b49b87c45d80742504eaa671d25af7c82496752143933af
Contents?: true
Size: 298 Bytes
Versions: 9
Compression:
Stored size: 298 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
9 entries across 9 versions & 1 rubygems