Current Path : /usr/local/share/ri/1.8/system/Hash/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/share/ri/1.8/system/Hash/sort-i.yaml |
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Converts <em>hsh</em> to a nested array of <tt>[</tt> <em>key, value</em> <tt>]</tt> arrays and sorts it, using <tt>Array#sort</tt>. - !ruby/struct:SM::Flow::VERB body: " h = { "a" => 20, "b" => 30, "c" => 10 }\n h.sort #=> [["a", 20], ["b", 30], ["c", 10]]\n h.sort {|a,b| a[1]<=>b[1]} #=> [["c", 10], ["a", 20], ["b", 30]]\n" full_name: Hash#sort is_singleton: false name: sort params: | hsh.sort => array hsh.sort {| a, b | block } => array visibility: public