Flowdock
key?(p1) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
VALUE
rb_hash_has_key(VALUE hash, VALUE key)
{
    if (RHASH_AR_TABLE_P(hash) && ar_lookup(hash, key, 0)) {
        return Qtrue;
    }
    else if (RHASH_ST_TABLE_P(hash) && st_lookup(RHASH_ST_TABLE(hash), key, 0)) {
        return Qtrue;
    }
    return Qfalse;
}
Register or log in to add new notes.