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

pathconf

        # IO.pathconf

(from ruby core)
---
    pathconf(p1)

---

Returns pathname configuration variable using fpathconf().

*name* should be a constant under `Etc` which begins with `PC_`.

The return value is an integer or nil. nil means indefinite limit. 
(fpathconf() returns -1 but errno is not set.)

    require 'etc'
    IO.pipe {|r, w|
      p w.pathconf(Etc::PC_PIPE_BUF) #=> 4096
    }



      

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.