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

seek

        # Dir.seek

(from ruby core)
---
    dir.seek( integer ) -> dir

---

Seeks to a particular location in *dir*. *integer* must be a value
returned by Dir#tell.

    d = Dir.new("testdir")   #=> #<Dir:0x401b3c40>
    d.read                   #=> "."
    i = d.tell               #=> 12
    d.read                   #=> ".."
    d.seek(i)                #=> #<Dir:0x401b3c40>
    d.read                   #=> ".."



      

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.