This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

rassoc

        # Hash.rassoc

(from ruby core)
---
    hash.rassoc(value) -> new_array or nil

---

Returns a new 2-element Array consisting of the key and value of the
first-found entry whose value is `==` to value (see [Entry
Order](#class-Hash-label-Entry+Order)):
    h = {foo: 0, bar: 1, baz: 1}
    h.rassoc(1) # => [:bar, 1]

Returns `nil` if no such value found.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.