forked from YaccConstructor/QuickGraph
-
-
Notifications
You must be signed in to change notification settings - Fork 81
[FEATURE] Deferred execution #76
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Activity
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Is your feature request related to a problem? Please describe.
The library almost entirely uses immediate execution.
This is inconvenient for use in linq-expressions, in which case most of the computation is wasted.
Describe the solution you'd like
Some typical functions with
yield return. For example breadth and depth traversal, ancestor and siblings traversal and so onDescribe alternatives you've considered
For now I implement these functions myself