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

unix?

        # Addrinfo.unix?

(from ruby core)
---
    addrinfo.unix? => true or false

---

returns true if addrinfo is UNIX address. returns false otherwise.

    Addrinfo.tcp("127.0.0.1", 80).unix? #=> false
    Addrinfo.tcp("::1", 80).unix?       #=> false
    Addrinfo.unix("/tmp/sock").unix?    #=> true



      

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.