Sha256: 3e02ea6926b239f1d4d7fd12c2b7c7573c03000e8d871e0c7a1f0c5daf57576a
Contents?: true
Size: 358 Bytes
Versions: 26
Compression:
Stored size: 358 Bytes
Contents
class Hash alias_method( :at, :[] ) end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCHash < Test::Unit::TestCase def test_at h = { :a=>1, :b=>2 } assert_equal( 1, h.at(:a) ) assert_equal( 2, h.at(:b) ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems