From: Benoit Daloze Date: 2012-03-16T20:59:37+09:00 Subject: [ruby-core:43345] [ruby-trunk - Bug #6159][Open] Enumerable::Lazy#inspect Issue #6159 has been reported by Benoit Daloze. ---------------------------------------- Bug #6159: Enumerable::Lazy#inspect https://bugs.ruby-lang.org/issues/6159 Author: Benoit Daloze Status: Open Priority: Normal Assignee: 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/