Class: Arrow::TableConcatenateOptions
- Inherits:
-
Object
- Object
- Arrow::TableConcatenateOptions
- Defined in:
- lib/arrow/table-concatenate-options.rb
Class Method Summary collapse
- .try_convert(value) ⇒ Object private
Class Method Details
.try_convert(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/arrow/table-concatenate-options.rb', line 22 def try_convert(value) case value when Hash = new value.each do |k, v| .public_send("#{k}=", value) end else nil end end |