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
Add an iterator library akin to Rust's Iterator trait.
Considerations
Working with type packs is annoying as of right now as you can't do something like (T...)? which is why existing libraries don't use type packs (like option, result, future).
This might make it annoying for iterators that produce multiple values, like iterators that produce a key and value for iterating over tables.
The text was updated successfully, but these errors were encountered:
Add an
iterator
library akin to Rust'sIterator
trait.Considerations
Working with type packs is annoying as of right now as you can't do something like
(T...)?
which is why existing libraries don't use type packs (like option, result, future).This might make it annoying for iterators that produce multiple values, like iterators that produce a key and value for iterating over tables.
The text was updated successfully, but these errors were encountered: