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

rjust

        # String.rjust

(from ruby core)
---
    str.rjust(integer, padstr=' ')   -> new_str

---

If *integer* is greater than the length of *str*, returns a new String
of length *integer* with *str* right justified and padded with *padstr*;
otherwise, returns *str*.

    "hello".rjust(4)            #=> "hello"
    "hello".rjust(20)           #=> "               hello"
    "hello".rjust(20, '1234')   #=> "123412341234123hello"



      

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.