Flowdock
compare_by_identity?() public

No documentation

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

Hide source
VALUE
rb_hash_compare_by_id_p(VALUE hash)
{
    if (RHASH_ST_TABLE_P(hash) && RHASH_ST_TABLE(hash)->type == &identhash) {
        return Qtrue;
    }
    else {
        return Qfalse;
    }
}
Register or log in to add new notes.