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

end_document

        # Psych::Handler.end_document

(from ruby core)
### Implementation from Handler
---
    end_document(implicit)

---

Called with the document ends.  `implicit` is a boolean value indicating
whether or not the document has an implicit ending.

### Example

Given the following YAML:

    ---
      hello world

`implicit` will be true.  Given this YAML:

    ---
      hello world
    ...

`implicit` will be 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.