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

ip_unpack

        # Addrinfo.ip_unpack

(from ruby core)
---
    addrinfo.ip_unpack => [addr, port]

---

Returns the IP address and port number as 2-element array.

    Addrinfo.tcp("127.0.0.1", 80).ip_unpack    #=> ["127.0.0.1", 80]
    Addrinfo.tcp("::1", 80).ip_unpack          #=> ["::1", 80]



      

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.