Sha256: 72a3f3be78ad7d3b76d86cc6039efd734016ac591a76dbcae4eb78f9020b55f2
Contents?: true
Size: 482 Bytes
Versions: 26
Compression:
Stored size: 482 Bytes
Contents
class Hash # Return a rehashing of _self_. # # {"a"=>1,"b"=>2}.to_h #=> {"b"=>2,"a"=>1} # #-- # A horse is a horse, a horse of course. #++ def to_h; rehash; end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCHash < Test::Unit::TestCase def test_to_h a = { :a => 1, :b => 2, :c => 3 } assert_equal( a, a.to_h ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems