You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be displayed that DelegatingIterable implements Iterable, even though it is indirect.
The text was updated successfully, but these errors were encountered:
srawlins
added
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
P3
A lower priority bug or feature request
labels
Aug 27, 2024
@kevmoo if you have a minute, I'd love your opinion.
The issue is that DelegatingIterableextends (not implements) _DelegatingIterableBase, which then implementsIterable. I really think this is 100% beside any point; it's an implementation detail. From the consumer's perspective, DelegatingIterable implements Iterable, and we should document it as such.
See DelegatingIterable, which indirectly implements Iterable:
vs DelegatingList, which directly implements List:
It should be displayed that
DelegatingIterable
implementsIterable
, even though it is indirect.The text was updated successfully, but these errors were encountered: