From: "shugo (Shugo Maeda)" Date: 2012-03-23T18:42:51+09:00 Subject: [ruby-core:43573] [ruby-trunk - Bug #6159][Feedback] Enumerable::Lazy#inspect Issue #6159 has been updated by shugo (Shugo Maeda). Status changed from Open to Feedback Assignee set to shugo (Shugo Maeda) ---------------------------------------- Bug #6159: Enumerable::Lazy#inspect https://bugs.ruby-lang.org/issues/6159#change-25067 Author: Eregon (Benoit Daloze) Status: Feedback Priority: Normal Assignee: shugo (Shugo Maeda) Category: core Target version: 2.0.0 ruby -v: ruby 2.0.0dev (2012-03-15 trunk 35042) [x86_64-darwin10.8.0] Hello, Enumerable::Lazy#inspect is undefined right now and relies on Enumerator#inspect: (1..5).lazy # => #:each> I think it would be nice to be similar to (direct) Enumerator#inspect: (1..5).each # => # So something like: # or #> It would also be nice to show the chaining, like Enumerator does: (1..5).select.map.flat_map # => #:map>:flat_map> What do you think? -- http://bugs.ruby-lang.org/