エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHub - dsisnero/hash_maps: This is an extensions to hash providing methods to map keys and values for hashes easily
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - dsisnero/hash_maps: This is an extensions to hash providing methods to map keys and values for hashes easily
= hash_maps * https://github.com/dsisnero/hash_maps.git == this is intended to be an extension fo... = hash_maps * https://github.com/dsisnero/hash_maps.git == this is intended to be an extension for hash. It adds the following methods * map_keys require 'hash_extensions' { :key => "value"}.map_keys{|k| k.to_s} => {"key" => "value"} * map_values { :key => "value"}.map_values{|v| v*2} => { :key => "valuevalue"} * map_kv { :key => "value", "k2" => 3}.map_kv{ |k,v| [k.to_s,v.to_s]} => {"key"=>"value