Module: GLib::ContainerClassMethods
Overview
Common methods for container classes: Array, PtrArray, List, SList and HashTable.
Instance Method Summary collapse
Instance Method Details
#from(typespec = :void, it) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/ffi-glib/container_class_methods.rb', line 21 def from(typespec = :void, it) case it when nil nil when FFI::Pointer wrap typespec, it when self it.reset_typespec typespec when GirFFI::BoxedBase wrap typespec, it.to_ptr else from_enumerable typespec, it end end |
#wrap(typespec, ptr) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/ffi-glib/container_class_methods.rb', line 5 def wrap(typespec, ptr) # HACK: wrap and from are almost the same! ptr = case ptr when nil nil when FFI::Pointer ptr when GirFFI::BoxedBase ptr.to_ptr end super(ptr).tap do |container| container.reset_typespec typespec if container end end |