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

inspect_sockaddr

        # Addrinfo.inspect_sockaddr

(from ruby core)
---
    addrinfo.inspect_sockaddr => string

---

returns a string which shows the sockaddr in *addrinfo* with
human-readable form.

    Addrinfo.tcp("localhost", 80).inspect_sockaddr     #=> "127.0.0.1:80"
    Addrinfo.tcp("ip6-localhost", 80).inspect_sockaddr #=> "[::1]:80"
    Addrinfo.unix("/tmp/sock").inspect_sockaddr        #=> "/tmp/sock"



      

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.