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

<<

        # Thread::SizedQueue.<<

(from ruby core)
### Implementation from SizedQueue
---
    <<(*args)

---

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 method is an alias for Thread::SizedQueue#push.)

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.