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

fdiv

        # Complex.fdiv

(from ruby core)
---
    cmp.fdiv(numeric)  ->  complex

---

Performs division as each part is a float, never returns a float.

    Complex(11, 22).fdiv(3)  #=> (3.6666666666666665+7.333333333333333i)



      

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.