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

coerce

        # Integer.coerce

(from ruby core)
---
    big.coerce(numeric)  ->  array

---

Returns an array with both a `numeric` and a `big` represented as Bignum
objects.

This is achieved by converting `numeric` to a Bignum.

A TypeError is raised if the `numeric` is not a Fixnum or Bignum type.

    (0x3FFFFFFFFFFFFFFF+1).coerce(42)   #=> [42, 4611686018427387904]



      

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.