Feature #10508
Return enumerator in TSort iterators
Description
Return an Enumerator if no block is given for:
- TSort.tsort_each
- TSort.each_strongly_connected_component
- TSort.each_strongly_connected_component_from
Files
Updated by marcandre (Marc-Andre Lafortune) about 6 years ago
- Assignee set to akr (Akira Tanaka)
Looks good.
Updated by nobu (Nobuyoshi Nakada) about 6 years ago
Unnecessary Enumerator slows the performance down.
Updated by ptico (Andrey Savchenko) about 6 years ago
If you mean these .to_a calls, i have created dummy benchmark: https://gist.github.com/Ptico/a16a5fe221de91166c31 and it looks good
Updated by akr (Akira Tanaka) about 6 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
Applied in changeset ruby-trunk:r48584.
- lib/tsort.rb: Returns an enumerator if no block is given. [ruby-core:66270] [Feature #10508] Proposed by Andrey Savchenko.