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

order

        # OptionParser.order

(from ruby core)
---
    order(*argv, into: nil, &nonopt)

---

Parses command line arguments `argv` in order. When a block is given,
each non-option argument is yielded. When optional `into` keyword
argument is provided, the parsed option values are stored there via
`[]=` method (so it can be Hash, or OpenStruct, or other similar
object).

Returns the rest of `argv` left unparsed.



      

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.