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

prepend

        # OptionParser::List.prepend

(from ruby core)
### Implementation from List
---
    prepend(*args)

---

Inserts `switch` at the head of the list, and associates short, long and
negated long options. Arguments are:

`switch`
:   OptionParser::Switch instance to be inserted.
`short_opts`
:   List of short style options.
`long_opts`
:   List of long style options.
`nolong_opts`
:   List of long style options with "no-" prefix.


    prepend(switch, short_opts, long_opts, nolong_opts)



      

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.