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

ipv6?

        # Addrinfo.ipv6?

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

---

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

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



      

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.