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

nlink

        # File::Stat.nlink

(from ruby core)
### Implementation from Stat
---
    stat.nlink   -> integer

---

Returns the number of hard links to *stat*.

    File.stat("testfile").nlink             #=> 1
    File.link("testfile", "testfile.bak")   #=> 0
    File.stat("testfile").nlink             #=> 2



      

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.