Module: GLib::ListMethods::ClassMethods
- Defined in:
- lib/ffi-glib/list_methods.rb
Overview
Common class methods for List and SList
Instance Method Summary collapse
Instance Method Details
#from_enumerable(type, arr) ⇒ Object
81 82 83 |
# File 'lib/ffi-glib/list_methods.rb', line 81 def from_enumerable(type, arr) arr.reduce(new(type)) { |lst, val| lst.prepend val }.reverse end |