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

fdiv

        # Integer.fdiv

(from ruby core)
---
    fdiv(numeric) -> float

---

Returns the Float result of dividing `self` by `numeric`:

    4.fdiv(2)      # => 2.0
    4.fdiv(-2)      # => -2.0
    -4.fdiv(2)      # => -2.0
    4.fdiv(2.0)      # => 2.0
    4.fdiv(Rational(3, 4))      # => 5.333333333333333

Raises an exception if `numeric` cannot be converted to a Float.



      

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.