Sha256: f791f1326e26a147e0fd590aa0500712c0c50ce06f108e1a7b19800ef4e3ccb0
Contents?: true
Size: 418 Bytes
Versions: 26
Compression:
Stored size: 418 Bytes
Contents
class NilClass # Allows <tt>nil</tt> to create an empty hash, # similar to #to_a and #to_s. # # nil.to_h #=> {} # def to_h; {}; end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCNilClass < Test::Unit::TestCase def test_to_h assert_equal( {}, nil.to_h ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems