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

wday

        # Time.wday

(from ruby core)
---
    time.wday -> integer

---

Returns an integer representing the day of the week, 0..6, with Sunday
== 0.

    t = Time.now   #=> 2007-11-20 02:35:35 -0600
    t.wday         #=> 2
    t.sunday?      #=> false
    t.monday?      #=> false
    t.tuesday?     #=> true
    t.wednesday?   #=> false
    t.thursday?    #=> false
    t.friday?      #=> false
    t.saturday?    #=> false



      

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.