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



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);
}