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

feat: add toIterable function #52

Merged
merged 1 commit into from
Feb 5, 2021

Conversation

achingbrain
Copy link
Contributor

If the tree is very large, and you want to look at the contents it would be good to not have to put every contact into an array before you can look at any of them.

Adds a toIterable function as a generator that can be used to iterate over the tree without buffering it's contents:

for (const contact of tree.toIterable()) {
  // ... do something with contact
}

If the tree is very large, and you want to look at the contents it
would be good to not have to put every contact into an array before
you can look at any of them.

Adds a `toIterable` function as a generator that can be used to iterate
over the tree without buffering it's contents:

```js
for (const contact of tree.toIterable()) {
  // ... do something with contact
}
```
@tristanls tristanls merged commit 3d80061 into tristanls:master Feb 5, 2021
@tristanls
Copy link
Owner

Thank you 🙂

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.

2 participants