Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/hwia_rails.rb

Direct Known Subclasses

StrHash

Instance Method Summary collapse

Instance Method Details

#strhashObject Also known as: hash_with_indifferent_access



318
319
320
321
322
323
324
# File 'ext/hwia/hwia.c', line 318

static VALUE
rb_hash_strhash(VALUE hash)
{
    VALUE args[1];
    args[0] = hash;
    return rb_strhash_s_create(1, (VALUE *)args, rb_cStrHash);
}