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

monday?

        # Time.monday?

(from ruby core)
---
    time.monday? -> true or false

---

Returns `true` if *time* represents Monday.

    t = Time.local(2003, 8, 4)       #=> 2003-08-04 00:00:00 -0500
    t.monday?                        #=> true



      

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.