You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way while walking/traversing to stop going further on this specific nodeand move on to the next sibling and mainly the rest of the traversal. I can see the walk method have the option to return false to stop the traversal all together, but what if i just want to keep going but stop traversing this specific node any further?
Unfortunately no, I've been wanting to add this feature for quite some time but I'm not sure how to do it in the post-order traversal so I've postponed it. Returning false from walk was an API mistake. I should have used a control object with functions to control traversal. Will think about it further but don't expect a quick fix for now. I'm leaving this issue open to remind me I should solve this.
Hello,
Is there a way while walking/traversing to stop going further on this specific nodeand move on to the next sibling and mainly the rest of the traversal. I can see the walk method have the option to return false to stop the traversal all together, but what if i just want to keep going but stop traversing this specific node any further?
Thanks, love the library, using it extensively here http://codepen.io/yehiasalam/pen/LVPadv
The text was updated successfully, but these errors were encountered: