to_h(*args) -> Hash
[permalink][rdoc][edit]-
self を [key, value] のペアの配列として解析した結果を Hash にして返します。
- [PARAM] args:
- each の呼び出し時に引数として渡されます。
%i[hello world].each_with_index.to_h # => {:hello => 0, :world => 1}
to_h(*args) -> Hash
[permalink][rdoc][edit]self を [key, value] のペアの配列として解析した結果を Hash にして返します。
%i[hello world].each_with_index.to_h # => {:hello => 0, :world => 1}