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

bind_call

        # UnboundMethod.bind_call

(from ruby core)
---
    umeth.bind_call(recv, args, ...) -> obj

---

Bind *umeth* to *recv* and then invokes the method with the specified
arguments. This is semantically equivalent to
`umeth.bind(recv).call(args, ...)`.


(from gem debug-1.7.1)
---
    bind_call(obj, *args)

---



      

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.