Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/hwia_rails.rb
Direct Known Subclasses
Instance Method Summary collapse
- #strhash ⇒ Object (also: #hash_with_indifferent_access)
Instance Method Details
#strhash ⇒ Object Also known as: hash_with_indifferent_access
346 347 348 349 350 351 352 |
# File 'ext/hwia/hwia.c', line 346
static VALUE
rb_hash_strhash(VALUE hash)
{
VALUE args[1];
args[0] = hash;
return rb_strhash_s_create(1, (VALUE *)args, rb_cStrHash);
}
|