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

fetch

        # Thread.fetch

(from ruby core)
---
    thr.fetch(sym)           -> obj
    thr.fetch(sym) { }       -> obj
    thr.fetch(sym, default)  -> obj

---

Returns a fiber-local for the given key. If the key can't be found,
there are several options: With no other arguments, it will raise a
KeyError exception; if *default* is given, then that will be returned;
if the optional code block is specified, then that will be run and its
result returned.  See Thread#[] and Hash#fetch.



      

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.