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

hierarchical?

        # URI::Generic.hierarchical?

(from ruby core)
### Implementation from Generic
---
    hierarchical?()

---

Returns true if URI is hierarchical.

## Description

URI has components listed in order of decreasing significance from left
to right, see RFC3986 https://tools.ietf.org/html/rfc3986 1.2.3.

## Usage

    require 'uri'

    uri = URI.parse("http://my.example.com/")
    uri.hierarchical?
    #=> true
    uri = URI.parse("mailto:joe@example.com")
    uri.hierarchical?
    #=> 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.