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

drop

        # Array.drop

(from ruby core)
---
    array.drop(n) -> new_array

---

Returns a new Array containing all but the first `n` element of `self`,
where `n` is a non-negative Integer; does not modify `self`.

Examples:
    a = [0, 1, 2, 3, 4, 5]
    a.drop(0) # => [0, 1, 2, 3, 4, 5]
    a.drop(1) # => [1, 2, 3, 4, 5]
    a.drop(2) # => [2, 3, 4, 5]



      

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.