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

filter_map

        # Enumerator::Lazy.filter_map

(from ruby core)
### Implementation from Lazy
---
    lazy.filter_map { |obj| block } -> lazy_enumerator

---

Like Enumerable#filter_map, but chains operation to be lazy-evaluated.

    (1..).lazy.filter_map { |i| i * 2 if i.even? }.first(5)
    #=> [4, 8, 12, 16, 20]



      

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.