Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 644 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 644 Bytes

DrNet.Hyperloop

DrNet.Hyperloop library helps to rewrites recursive iterators to linear execution time dependence on the recursion depth with minimal code refactory.

As a result, the execution time will be reduced from quadratic to linear dependence on the recursion depth: image

See 'All About Iterators' article.

It can be used by compiler to implement Non-quadratic Recursive Iterators feature request.