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

Iterator.toArray does not work with iterators. #241

Open
samwightt opened this issue Aug 19, 2024 · 2 comments
Open

Iterator.toArray does not work with iterators. #241

samwightt opened this issue Aug 19, 2024 · 2 comments
Assignees

Comments

@samwightt
Copy link

According to MDN, an iterator is any object that implements a next method that returns an IteratorResult (Iterator.value<'a> in RescriptCore). An iterable is any object that implements the [Symbol.iterator] method that returns an iterator.

Right now Iterator.toArray is defined as an extern using Array.from:

https://github.com/rescript-association/rescript-core/blob/22642eafb6c268c8348bd68c8569a30918b66d6b/src/Core__Iterator.res#L9C1-L9C52

However, Array.from accepts an iterable, not an iterator. This means that if we implement a valid iterator (not an iterable, but an object with next), Iterator.next and Iterator.forEach will work just fine but Iterator.toArray will not: it returns an empty array.

To fix this, Iterator.toArray should be defined something like:

let toArray = (iterator: t<'a>): array<'a> => {
  let results = []
  iterator->forEach(value => {
    switch value {
    | Some(value) => Array.push(results, value)
    | None => _
    }
  })
  results
}

To use Array.from, a separate module for iterables should be defined and used instead.

@tsnobip
Copy link
Member

tsnobip commented Mar 7, 2025

good catch @samwightt! We'll look into it before v12.

@tsnobip tsnobip self-assigned this Mar 7, 2025
@tsnobip
Copy link
Member

tsnobip commented Mar 13, 2025

MDN states that

The Iterator class provides a [Symbol.iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Iterator/Symbol.iterator) method that returns the iterator object itself, making the iterator also iterable.

@samwightt Do you have any counter-example of iterators that do not work with Array.from?

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

No branches or pull requests

2 participants