Method: Hash#inspect
- Defined in:
- hash.c
#to_s ⇒ String #inspect ⇒ String Also known as: to_s
Return the contents of this hash as a string.
h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300 }
h.to_s #=> "{\"c\"=>300, \"a\"=>100, \"d\"=>400}"
1718 1719 1720 1721 1722 1723 1724 |
# File 'hash.c', line 1718
static VALUE
rb_hash_inspect(VALUE hash)
{
if (RHASH_EMPTY_P(hash))
return rb_usascii_str_new2("{}");
return rb_exec_recursive(inspect_hash, hash, 0);
}
|