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

to_i

        # Process::Status.to_i

(from ruby core)
### Implementation from Status
---
    stat.to_i     -> integer

---

Returns the bits in *stat* as an Integer. Poking around in these bits is
platform dependent.

    fork { exit 0xab }         #=> 26566
    Process.wait               #=> 26566
    sprintf('%04x', $?.to_i)   #=> "ab00"



      

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.