method
to_h
ruby latest stable - Class:
Enumerable
to_h(*args)public
Returns the result of interpreting enum as a list of [key, value] pairs.
%i[hello world].each_with_index.to_h # => {:hello => 0, :world => 1}
to_h(*args)Returns the result of interpreting enum as a list of [key, value] pairs.
%i[hello world].each_with_index.to_h # => {:hello => 0, :world => 1}