Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow non-recursive select() with lambdas #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

datadiode
Copy link

@datadiode datadiode commented Jul 10, 2024

The feature works by accepting additional arrows to indicate the relative depth from the current node's perspective at which to search, like in r => r => r.name == "ChildTag".

It can help avoid ambiguous results and speed up searches tremendously.

Mixing in ternary operators allows to decide for every visited node whether or not to recurse into its children.
An example for this approach is given in nested-lambda-demo.html.

…rows to indicate the relative depth from the current node's perspective at which to search, like in r => r => r.name == "ChildTag"
…h for nodes matching, or requiring the current node to already match the start condition, where a return value of null rather than false opts for the latter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant