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

each_char

        # IO.each_char

(from ruby core)
---
    ios.each_char {|c| block }  -> ios
    ios.each_char               -> an_enumerator

---

Calls the given block once for each character in *ios*, passing the
character as an argument. The stream must be opened for reading or an
IOError will be raised.

If no block is given, an enumerator is returned instead.

    f = File.new("testfile")
    f.each_char {|c| print c, ' ' }   #=> #<File:testfile>



      

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.