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

Error in definition of interface IteratorResult #15912

Closed
lord-saumagen opened this issue May 17, 2017 · 2 comments
Closed

Error in definition of interface IteratorResult #15912

lord-saumagen opened this issue May 17, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@lord-saumagen
Copy link

Dear Ladies and Gentlemen,

I would like to bring to your attention, that the following interface is not conform to the specification in the "lib.es6.d.ts".

Currently defined as:

interface IteratorResult<T> {
done: boolean;
value: T;
}

The specification tells that the last IteratorResult returned form an iterator has the following values assigned:

done = true;
value = undefined,

So the correct interface definition would be:

interface IteratorResult<T> {
done: boolean;
value: T | undefined;
}

See the description ad MDN:

image

This issue might also be related to:
TypeScript 2.0 change in IterableResult makes implementing iterators harder

Kind regards,

Lord Saumagen.

@mhegazy
Copy link
Contributor

mhegazy commented May 17, 2017

Looks like a duplicate of #2983 and #11375

@mhegazy mhegazy added the Duplicate An existing issue was already created label May 17, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Jun 2, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Jun 2, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants