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

thread_variables

        # Thread.thread_variables

(from ruby core)
---
    thr.thread_variables   -> array

---

Returns an array of the names of the thread-local variables (as
Symbols).

    thr = Thread.new do
      Thread.current.thread_variable_set(:cat, 'meow')
      Thread.current.thread_variable_set("dog", 'woof')
    end
    thr.join               #=> #<Thread:0x401b3f10 dead>
    thr.thread_variables   #=> [:dog, :cat]

Note that these are not fiber local variables.  Please see Thread#[] and
Thread#thread_variable_get for more details.



      

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.