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

push

        # Thread::SizedQueue.push

(from ruby core)
### Implementation from SizedQueue
---
    push(object, non_block=false)
    enq(object, non_block=false)
    <<(object)

---

Pushes `object` to the queue.

If there is no space left in the queue, waits until space becomes
available, unless `non_block` is true.  If `non_block` is true, the
thread isn't suspended, and `ThreadError` is raised.



      

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.