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

quo

        # Complex.quo

(from ruby core)
---
    cmp / numeric     ->  complex
    cmp.quo(numeric)  ->  complex

---

Performs division.

    Complex(2, 3)  / Complex(2, 3)   #=> ((1/1)+(0/1)*i)
    Complex(900)   / Complex(1)      #=> ((900/1)+(0/1)*i)
    Complex(-2, 9) / Complex(-9, 2)  #=> ((36/85)-(77/85)*i)
    Complex(9, 8)  / 4               #=> ((9/4)+(2/1)*i)
    Complex(20, 9) / 9.8             #=> (2.0408163265306123+0.9183673469387754i)



      

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.