-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
TS 5.6 Beta BuiltinIteratorReturn
: can this be the default type argument of BuiltinIterator
's TReturn
?
#59444
Comments
BuiltinIteratorReturn
: can this be the default type argument of 'BuiltinIterator's
TReturn`?BuiltinIteratorReturn
: can this be the default type argument of BuiltinIterator
s TReturn
?
BuiltinIteratorReturn
: can this be the default type argument of BuiltinIterator
s TReturn
?BuiltinIteratorReturn
: can this be the default type argument of BuiltinIterator
's TReturn
?
Unfortunately, no. Despite the naming similarity, the "Builtin" referenced by
This is an important distinction due to incompatibilities between Making When I added the One option I have considered, however, is to remove the default for the |
Thank you for the detailed response! One thing I don't still get, though, is how setting I'm still concerned about the downside I mentioned above. Iterator helpers will make it more common to write iterator-returning functions and some people, including Personally the option to remove the default feels slightly better given that quick fixes are available to help fill the spot with the correct type. |
Or maybe yet another iterator type? 😅 interface IteratorReturnedByBuiltinIteratorReturningMethods<T> extends BuiltinIterator<T, BuiltinIteratorReturn, unknown> {} |
@rbuckton Could you take a look at my comments above? I believe you missed something. I think it's not possible to break user tests by setting a default type argument of a newly added type ( Also, while I understand the difference between "Builtin" as in |
It might not break user tests, but it would break user intuition. It's generally a good idea to have a type parameter's default match its constraint, though that's not a requirement. That's because user's might normally expect a
I'm considering shuffling names around and adding
I may also make |
Makes sense, I now understand the
Great news! That would solve my concern about explicitly writing down iterator types. Thank you. |
Acknowledgement
Comment
#58243 introduced the
BuiltinIteratorReturn
type and used it everywhere in type definition.Then #58222 introduced the
BuiltinIterator
type and replaced someIterableIterator
usage withBuiltinIterator
.I wonder if
BuiltinIteratorReturn
could be set to the default type argument of theTReturn
type parameter ofBuiltinIterator
, e.g.:#58463 mentions that
BuiltinIteratorReturn
cannot be used forIterableIterator
becauseIterableIterator
is a general purpose type not only for built-in iterators. However, this doesn't apply toBuiltinIterator
. I think we can safely useBuiltinIteratorReturn
specifically forBuiltinIterator
's default type argument.The downside of current approach (specify
BuiltinIteratorReturn
everywhere) is that it is too easy to disable the benefit of the new compiler option by manually using theBuiltinIterator
type:The text was updated successfully, but these errors were encountered: