We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
true
.iterator
The following is both map-like and list-like:
var list = {}; getSetReflections.setKeyValue(list,canSymbol.iterator,function(){ return { i: 0, next: function(){ if(this.i === 3) { return { value: undefined, done: true }; } this.i++; return { value: (this.i-1)*2, done: false }; } }; });
I think anything that implements .iterator should be more list-like. Thoughts?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following is both map-like and list-like:
I think anything that implements
.iterator
should be more list-like. Thoughts?The text was updated successfully, but these errors were encountered: