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

ord

        # Integer.ord

(from ruby core)
---
    int.ord  ->  self

---

Returns the `int` itself.

    97.ord   #=> 97

This method is intended for compatibility to character literals in Ruby
1.9.

For example, `?a.ord` returns 97 both in 1.8 and 1.9.



      

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.