Module: GirFFI::FFIExt::Pointer
- Defined in:
- lib/gir_ffi/ffi_ext/pointer.rb
Overview
Extensions to FFI::Pointer
Instance Method Summary collapse
-
#to_object ⇒ Object
FIXME: Should probably not be here.
- #to_ptr ⇒ Object
- #to_utf8 ⇒ Object
- #to_value ⇒ Object
- #zero? ⇒ Boolean
Instance Method Details
#to_object ⇒ Object
FIXME: Should probably not be here.
18 19 20 21 22 |
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 18 def to_object return nil if null? gtype = GObject.type_from_instance_pointer self Builder.build_by_gtype(gtype).direct_wrap self end |
#to_ptr ⇒ Object
5 6 7 |
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 5 def to_ptr self end |
#to_utf8 ⇒ Object
24 25 26 |
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 24 def to_utf8 null? ? nil : read_string.force_encoding('utf-8') end |
#to_value ⇒ Object
9 10 11 |
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 9 def to_value self end |
#zero? ⇒ Boolean
13 14 15 |
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 13 def zero? null? end |