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

Thread::SizedQueue

        # Thread::SizedQueue < Object

(from ruby core)
---
This class represents queues of specified size capacity.  The push
operation may be blocked if the capacity is full.

See Thread::Queue for an example of how a Thread::SizedQueue works.
---
# Class methods:

    new

# Instance methods:

    <<
    clear
    close
    deq
    empty?
    enq
    length
    max
    max=
    num_waiting
    pop
    push
    shift
    size


      

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.