Sha256: 53d1aa54b47c97786de7f30017048516e553663afbf01d235f12c445a99bb362
Contents?: true
Size: 478 Bytes
Versions: 13
Compression:
Stored size: 478 Bytes
Contents
module RDF::Raptor::FFI::V2 class World < ::FFI::AutoPointer include RDF::Raptor::FFI def initialize() ptr = V2.raptor_new_world_internal(V2.raptor_version_decimal) super(ptr, self.class.method(:release)) end ## # Releases `libraptor` memory associated with this structure. # # @param [FFI::Pointer] ptr # @return [void] def self.release(ptr) V2.raptor_free_world(ptr) end end # World end # RDF::Raptor::FFI::V2
Version data entries
13 entries across 13 versions & 1 rubygems